Greasy Fork 支持简体中文。

去除灰色滤镜

Remove gray filter

// ==UserScript==
// @name         去除灰色滤镜
// @version      0.2
// @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}");

    //腾讯游戏
    if(window.location.href.match(/https:\/\/.*.qq.com.*/)){
        document.getElementsByTagName("html")[0].style.cssText="-webkit-filter: grayscale(0%) !important;";
    }
})();