上帝说:要有颜色
当前为 
// ==UserScript==
// @name         Web With Color
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  上帝说:要有颜色
// @author       7nc
// @match        *://www.gamersky.com/*
// @match        *://weibo.com/*
// @match        *://www.zhihu.com/*
// @match        *://www.bilibili.com/*
// @match        *://www.163.com/*
// @match        *://www.sohu.com/*
// @match        *://www.ifeng.com/*
// @match        *://xueqiu.com/*
// @match        *://www.mysmth.net/*
// @match        *://tieba.baidu.com/*
// @run-at       document-end
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    // Your code here...
    document.getElementsByTagName('html')[0].style.webkitFilter='grayscale(0%)';
    var wbList=document.getElementsByClassName("grayTheme")
    if(wbList.length>0){
        wbList.forEach(function (elem) {
            elem.classList.remove("grayTheme")
        });
    }
})();