去除附加在网站上的灰色滤镜
// ==UserScript==
// @name 网页去灰
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description 去除附加在网站上的灰色滤镜
// @author Logs404
// @match *
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.querySelector("html").style.filter = 'none'
document.querySelector("html").style.webkitFilter = 'none'
})();