颜色还原

还你一个五彩斑斓的网页

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

/*!
// ==UserScript==
// @name          颜色还原
// @namespace     https://github.com/maomao1996/tampermonkey-scripts
// @version       0.0.1
// @description   还你一个五彩斑斓的网页
// @author        maomao1996
// @include       *
// @grant         GM_addStyle
// @run-at        document-start
// ==/UserScript==
*/
;
(function () {
    'use strict';
    var style = "html.color-restore, html.color-restore body, html.color-restore *{-webkit-filter: initial !important;-moz-filter: initial !important;-ms-filter: initial !important;-o-filter: initial !important;filter: initial !important;}";
    document.documentElement.classList.add('color-restore');
    GM_addStyle(style);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址