Greasy Fork

灰色网页恢复彩色

将绝大部分的灰色网页恢复为原来的彩色网页

// ==UserScript==
// @name         灰色网页恢复彩色
// @namespace    Scripts
// @version      0.1
// @description  将绝大部分的灰色网页恢复为原来的彩色网页
// @author       Xiaomu
// @match        *://*/*
// @run-at document-start
// @license MIT
// ==/UserScript==

(function() {'use strict';document.querySelector('html').style.cssText='-webkit-filter: none;'})();