NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/UziTech // @name Remove Element // @description Remove any element by holding [Shift] + [Ctrl] + [command/windows] then click on the element you would like to remove // @copyright 2018, UziTech (https://openuserjs.org/users/UziTech) // @license MIT // @version 0.1.0 // @include * // @grant none // ==/UserScript== // ==OpenUserJS== // @author UziTech // ==/OpenUserJS== document.addEventListener("click", function(e) { if (e.ctrlKey && e.shiftKey && e.metaKey) { e.target.remove(); e.stopImmediatePropagation(); e.preventDefault(); } }, true);