Greasy Fork

Greasy Fork is available in English.

更改黑白网页为彩色

修复黑白网页为彩色

当前为 2022-12-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         更改黑白网页为彩色
// @version      1.0
// @description  修复黑白网页为彩色
// @license      MIT
// @author       yuchenzhiyi
// @match        http*://*/*
// @grant        GM_addStyle
// @run-at       document-start
// @namespace    yuchenzhiyi
// ==/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;}");
})();