// ==UserScript== // @name Google Enable Dark Mode automatically // @include http*://*.google.*/search* // @include http://*.google.*/imgres* // @description Enables Google Search Dark Mode // @version 1.01 // @grant none // @namespace https://greasyfork.org/users/1258342 // @downloadURL none // ==/UserScript== var url = window.location.href; var safe = "?pccc=1"; if(url.indexOf(safe) == -1){ url += safe; window.location = url; }