// ==UserScript== // @name 更改黑白网页为彩色 // @version 1.0 // @description 修复黑白网页为彩色 // @license MIT // @author yuchenzhiyi // @match http*://*/* // @grant GM_addStyle // @run-at document-start // @namespace yuchenzhiyi // @downloadURL none // ==/UserScript== (function() { GM_addStyle("* {filter: none !important}"); //GM_addStyle("* {-webkit-filter:grayscale(0)! important;-moz-filter:grayscale(0) !important;-ms-filter:grayscale(0) !important;-o-filter:grayscale(0) !important;filter:grayscale(0) !important;filter:none !important;}"); })();