Greasy Fork

Greasy Fork is available in English.

恢复灰色网页原始色彩

恢复灰色网页原始色彩。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         恢复灰色网页原始色彩
// @namespace    http://tampermonkey.net/
// @version      0.9
// @description  恢复灰色网页原始色彩。
// @author       周怡
// @include      *
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license 周怡
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    console.log("去除灰色")
    //通用去除灰色"
    var style = document.createElement("style");
    style.type = "text/css";
    style.innerHTML = "html{filter: none!important;}";
    window.document.head.appendChild(style);


    //去除百度灰色
    let c = document.body.getAttribute("class")
    if (c) {
        c = c.replaceAll("big-event-gray", " ")
        document.body.removeAttribute("class")
        document.body.setAttribute("class", c) 
    }
    let c2 = document.documentElement.getAttribute("class")
    if (c2) {
        c2 = c2.replaceAll("big-event-gray", " ")
        document.documentElement.removeAttribute("class")
        document.documentElement.setAttribute("class", c2) 
    }

})();