Greasy Fork

网站全局灰色

2022/12/5 09:30:30

// ==UserScript==
// @name        网站全局灰色
// @match       *://*/*
// @grant       none
// @version     0.1
// @author      https://liufeii.com/
// @description 2022/12/5 09:30:30
// @namespace https://greasyfork.org/users/992564
// ==/UserScript==

(function() {
    document.body.style.filter='grayscale(100%)';
    document.getElementsByTagName('html')[0].style.filter = 'grayscale(100%)';
})();