Greasy Fork

去除灰色滤镜

Remove gray filter

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

// ==UserScript==
// @name         去除灰色滤镜
// @version      0.1
// @description  Remove gray filter
// @license      MIT
// @author       hfdem(https://github.com/hfdem)
// @match        http*://*/*
// @grant        GM_addStyle
// @run-at       document-start
// @namespace    https://greasyfork.org/users/990847
// ==/UserScript==

(function() {
    //针对大部分网站
    GM_addStyle("html, body, div, .grayCtrl .layout-Container>*{filter: none !important}");

    //针对腾讯游戏
    document.getElementsByTagName("html")[0].style.cssText="-webkit-filter: grayscale(0%) !important; ";
})();