// ==UserScript== // @name No Google vignette // @version 0.1.0 // @description try to take over the world! // @author lemon_qwq // @match *://*/* // ==/UserScript== (function() { 'use strict'; console.log(window.location.hash); if(window.location.href.endsWith('#google_vignette')) location.href=window.location.pathname.substring(0,window.location.pathname.length-16) const element=document.querySelector('.jar'); element.remove(); })();