Greasy Fork

恢复彩色网页

将因特殊原因变灰的网页恢复到彩色。

目前为 2022-12-06 提交的版本。查看 最新版本

// ==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');
})();