No images Bookmarklet
Simplify your browsing experience with this nifty JavaScript bookmarklet! Simply add this snippet to your bookmarks, and with one click, you can remove all images from a webpage, offering a clutter-free, text-only view. Ideal for distraction-free reading or speed browsing! To undo, simply refresh the page!
javascript:(function()%20{%20%20%20%20%20var%20images%20=%20document.getElementsByTagName('img');%20%20%20%20%20while(images.length%20>%200)%20{%20%20%20%20%20%20%20%20%20images[0].parentNode.removeChild(images[0]);%20%20%20%20%20}%20})();