NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Kill Images // @namespace https://lolsuperscratch.wixsite.com/killimage // @version 0.5 // @description Kill any Images for All Websites // @author SopaPlay // @match http://*/* // @match https://*/* // @icon https://maxcdn.icons8.com/Share/icon/Photo_Video//remove_image1600.png // @grant none // @run-at document-end // @updateURL https://openuserjs.org/meta/lolsuperscratch/Kill_Images.meta.js // ==/UserScript== (function() { 'use strict'; // Your code here... var x = document.getElementsByTagName("img"); var i; for (i = 0; i < x.length; i++) { x[i].remove(); } })();