Greasy Fork is available in English.
将因特殊原因变灰的网页恢复到彩色。
当前为
// ==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
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('html,body').forEach(el => el.style.filter = 'none');
})();