// ==UserScript== // @name 恢复彩色网页 // @namespace http://tampermonkey.net/ // @version 0.1 // @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'; document.querySelectorAll('html,body').forEach(el => el.style.filter = 'none'); })();