// ==UserScript== // @name anti-grayscale // @version 0.1 // @description 灰你妈的逼 // @author cybartist // @match http*://*/* // @run-at document-start // @grant GM_addStyle // @license MIT // @namespace https://greasyfork.org/users/990596 // @downloadURL none // ==/UserScript== (function () { function anti() { GM_addStyle( "html {filter:none !important;}" ); } window.addEventListener('load', function() { anti(); }, false); anti(); })();