Greasy Fork

黑白网页恢复

常用站点灰色滤镜恢复,还你彩色显示器!!!

目前为 2022-12-04 提交的版本。查看 最新版本

// ==UserScript==
// @name        黑白网页恢复
// @namespace   me.milly
// @version     0.1
// @license     Apache 2.0
// @author      MillyLee
// @description 常用站点灰色滤镜恢复,还你彩色显示器!!!
// @match       *://*.acfun.cn/*
// @match       *://*.bilibili.com/*
// @match       *://*.douyu.com/*
// @match       *://*.youku.com/*
// @match       *://*.iqiyi.com/*
// @match       *://*.qq.com/*
// @match       *://*.mgtv.com/*
// @match       *://*.zhihu.com/*
// @match       *://*.jianshu.com/*
// @match       *://*.baidu.com/*
// @match       *://*.jd.com/*
// @match       *://*.taobao.com/*
// @match       *://*.163.com/*
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle(`
  html {
      filter:grayscale(0) !important;
      -webkit-filter:grayscale(0) !important;
  }
`);