// ==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 // @downloadURL none // ==/UserScript== (function() { //针对大部分网站 GM_addStyle("html, body, div, .grayCtrl .layout-Container>*{filter: none !important}"); //针对腾讯游戏 document.getElementsByTagName("html")[0].style.cssText="-webkit-filter: grayscale(0%) !important; "; })();