Web With Color

上帝说:要有颜色

Od 01.12.2022.. Pogledajte najnovija verzija.

// ==UserScript==
// @name         Web With Color
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  上帝说:要有颜色
// @author       7nc
// @match        *://www.gamersky.com/*
// @match        *://weibo.com/*
// @match        *://www.zhihu.com/*
// @match        *://www.bilibili.com/*
// @match        *://www.mysmth.net/*
// @match        *://tieba.baidu.com/*
// @run-at       document-body
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.getElementsByTagName('html')[0].style.webkitFilter='grayscale(0%)';

    var wbList=document.getElementsByClassName("grayTheme")
    wbList.forEach(function (elem) {
        elem.classList.remove("grayTheme")
    });

})();