Greasy Fork

恢复色彩-移除默哀网站全局灰色

2022/11/30 17:08:29

目前为 2022-11-30 提交的版本。查看 最新版本

// ==UserScript==
// @name        恢复色彩-移除默哀网站全局灰色
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      https://blog.lqs1848.top
// @description 2022/11/30 17:08:29
// @namespace https://greasyfork.org/users/662178
// ==/UserScript==


(function() {
    'use strict';
    document.body.style.filter='none';
    document.getElementsByTagName('html')[0].style.filter = 'none';
})();