// ==UserScript== // @name 网页去黑白 // @version 1.0 // @description 去除所有网页过度的filter黑白效果 // @license MIT // @author 暂时空名 // @match * // @match *://*/* // @grant GM_addStyle // @run-at document-start // @namespace https://greasyfork.org/users/990653 // @downloadURL none // ==/UserScript== (function() { GM_addStyle('*{filter: none !important; -webkit-filter: none !important; -moz-filter: none !important; -ms-filter: none !important; -o-filter: none !important;}'); })();