// ==UserScript== // @name 黑白网页恢复彩色 // @namespace http://tampermonkey.net/ // @version 1.0 // @license MIT // @description 黑白网页恢复彩色,匹配所有网页,即装即用。 // @author https://greasyfork.org/users/574395-frammolz-amanda // @match * // @grant none // @downloadURL none // ==/UserScript== (function() { var filter = document.createElement('style'); filter.type = 'text/css'; document.getElementsByTagName('head')[0].appendChild(filter); filter.appendChild(document.createTextNode("*{-webkit-filter:none!important;}")); })();