// ==UserScript== // @name 取消网站灰色过滤 // @description 取消网页变灰(黑白)效果 // @author Ryan Choi // @version 1.2. // @license MIT // @namespace http://tampermonkey.net/ // @match https://*/* // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function() { 'use strict'; let css = ` gray { -webkit-filter:grayscale(0) !important; } html{ -webkit-filter: grayscale(0)!important; filter: grayscale(0)important!; } body{ filter:grayscale(0)!important; } element.style { filter: grayscale(0)!important; }` document.body.classList.remove("big-event-gray"); GM_addStyle(css) })();