Hides all images on any website
// ==UserScript==
// @name Hide All Images
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Hides all images on any website
// @author You
// @match *://*/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
// Select all <img> elements and hide them
document.querySelectorAll('img').forEach(img => img.style.display = 'none');
})();