I would like to stop images from loading, as in not even get a chance to download, using greasemonkey. Right now I have
var images = document.getElementsByTagName('img'); for (var i=0; i<images.length; i++){ images[i].src = ''; }
but I don’t think this actually stops the images from downloading. Anyone know how to stop the images from loading?
Thanks for your time and help 🙂
Almost all images are not downloaded. So your script almost working as is.
I’ve tested the following script:
Use a dedicated extension to manage images (something like ImgLikeOpera).
If you’d like to filter images on all browser then a proxy with filtering capabilities might help e.g., Privoxy.