Greasy Fork

黑白网页恢复

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

// ==UserScript==
// @name        黑白网页恢复
// @namespace   me.milly
// @version     0.2
// @license     Apache 2.0
// @author      MillyLee
// @description 常用站点灰色滤镜恢复,还你彩色显示器!!!
// @match       *://*/*
// @grant       GM_addStyle
// ==/UserScript==

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