浏览网站时黑白背景
// ==UserScript==
// @name 黑白背景
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 浏览网站时黑白背景
// @author 袁煜914
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
GM_addStyle("* {filter: grayscale(100%);}");
//GM_addStyle("* html { -webkit-filter: grayscale(100%);-moz-filter: grayscale(100%);-ms-filter: grayscale(100%);-o-filter: grayscale(100%);filter: grayscale(100%);}");
})();