学编程, 自己去除。 油猴插件,自己装。 百度灰叫 big-event-gray. 自己搞吧. 很烦很惭愧,一天到晚就是些微小的工作。
// ==UserScript==
// @name 色彩
// @namespace http://tampermonkey.net/
// @version 0.1
// @description b 站、微博、douyu 、网易云 加入颜色。
// @author wallace
// @match *www.douyu.com/*
// @match *www.bilibili.com/*
// @match *://weibo.com/*
// @match *music.163.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var elems = document.querySelector(':root');
if(top.window.location.href.indexOf("weibo.com") > -1){
var els = document.querySelectorAll(".grayTheme");
[].forEach.call(els, function(el) {
el.className = el.className.replace(/\grayTheme\b/, "mmm");});
return
}
if(top.window.location.href.indexOf("music.163.com") > -1){
elems.style.webkitFilter = "grayscale(0)";
elems.style.filter = "grayscale(0)";
return
}
if(top.window.location.href.indexOf("bilibili.com") > -1){
elems.classList.remove("gray");
return
}
if(top.window.location.href.indexOf("douyu.com") > -1){
elems.classList.remove("grayCtrl");
return
}
})();
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.