Greasy Fork is available in English.
Remove gray filter
当前为
// ==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 http://greasyfork.icu/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; ";
})();