// ==UserScript== // @name 恢复彩色网页 // @namespace http://tampermonkey.net/ // @version 0.11 // @description 将因特殊原因变灰的网页恢复到彩色。 // @author Distors // @match https://* // @icon https://www.google.com/s2/favicons?sz=64&domain=zhihu.com // @grant none // @license GPL-3.0-only // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', e => document.querySelectorAll('html,body').forEach(el => { el.style.filter = 'none'; el.classList.remove('big-event-gray')})); })();