// ==UserScript== // @name 恢复色彩-移除默哀网站全局灰色 // @match *://*/* // @grant none // @version 1.1 // @author https://blog.lqs1848.top // @description 2022/11/30 17:08:29 // @namespace https://greasyfork.org/users/662178 // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.body.style.filter='none'; document.getElementsByTagName('html')[0].style.filter = 'none'; document.getElementsByTagName('div').forEach(function(value,index){ value.style.filter='none'; }); })();