// ==UserScript== // @name Web With Color // @namespace http://tampermonkey.net/ // @version 0.3 // @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 // @downloadURL 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") }); })();