您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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; "; })();