Greasy Fork is available in English.
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 http://greasyfork.icu/users/992564
// ==/UserScript==
(function() {
document.body.style.filter='grayscale(100%)';
document.getElementsByTagName('html')[0].style.filter = 'grayscale(100%)';
})();