众所周知,网页在某些情况下会变灰
虽然情有可原,但观感上确实不太好
但好在绝大多数网站都是通过css调用变灰的,所以我们可以屏蔽掉这部分css来达到复原彩色效果
本脚本仅供技术学习,并非恶意!
下边就是油猴脚本了,直接新建脚本然后填写这些内容保存即可。
// ==UserScript==
// @name 我要彩色
// @version 0.1
// @description Color back
// @author color
// @match http*://*/*
// @grant GM_addStyle
// @run-at document-start
// @namespace https://
// ==/UserScript==
(function() {
GM_addStyle("* {filter: none !important}");
//GM_addStyle("* {-webkit-filter:grayscale(0)! important;-moz-filter:grayscale(0) !important;-ms-filter:grayscale(0) !important;-o-filter:grayscale(0) !important;filter:grayscale(0) !important;filter:none !important;}");
})();