Greasy Fork

网页去黑白

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

目前为 2022-12-01 提交的版本。查看 最新版本

// ==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
// ==/UserScript==

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