Greasy Fork is available in English.

更改黑白网页为彩色

修复黑白网页为彩色

// ==UserScript==
// @name         更改黑白网页为彩色
// @version      1.5
// @description  修复黑白网页为彩色
// @license      MIT
// @author       yuchenzhiyi
// @match        http*://*/*
// @grant        GM_addStyle
// @namespace    yuchenzhiyi
// ==/UserScript==

(function() {
    GM_addStyle("* {filter: none !important}");
})();