黑白网页恢复彩色。
// ==UserScript==
// @name 一键恢复网页彩色
// @namespace tools
// @description 黑白网页恢复彩色。
// @version 0.1
// @description try to take over the world!
// @author Jun
// @match *://*/*
// @license MIT
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`html{filter:grayscale(0) !important}`);
GM_addStyle(`body{filter:grayscale(0) !important}`);
})();