Warning: fopen(/www/sites/greasyfork.icu/index/store/temp/f2e4092831db89cdd6eaa3469792cf59.html): failed to open stream: No space left on device in /www/sites/greasyfork.icu/index/scriptsControl.php on line 132
网页去黑白 - 源代码

Greasy Fork

Greasy Fork is available in English.

网页去黑白

去除所有网页过度的filter黑白效果

// ==UserScript==
// @name         网页去黑白
// @version      1.0
// @description  去除所有网页过度的filter黑白效果
// @license      MIT
// @author       暂时空名
// @match        *
// @match        *://*/*
// @grant        GM_addStyle
// @run-at       document-start
// @namespace http://greasyfork.icu/users/990653
// ==/UserScript==

(function() {
    GM_addStyle('*{filter: none !important; -webkit-filter: none !important; -moz-filter: none !important; -ms-filter: none !important; -o-filter: none !important;}');
})();