Y
Hacker News
new
|
ask
|
show
|
jobs
by
davidweatherall
2488 days ago
I imagine anti-lazyloading extensions will start appearing soon.
2 comments
mantas
2488 days ago
And that's exactly why common API for lazyloading is awesome. It's a PITA to write such extension when everybody is using custom approaches for lazyloading. Once there's a common API, there will be a common approach to override it.
link
rasz
2488 days ago
whole extension:
document.querySelectorAll("img[loading]").forEach(function(e){e.loading="";})
link