移除灰阶滤镜样式

仅仅只移除灰阶滤镜

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

@charset "UTF-8";
/* ==UserStyle==
@name         移除灰阶滤镜样式
@namespace      https://tampermonkey.net
@version       1.7.1
@include       *
@description    仅仅只移除灰阶滤镜
@author         RCWei
==/UserStyle== */

html,
body {
  -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;
}

body.qm-activity #head_wrapper,
body.qm-activity #s_menu_gurd,
body.qm-activity #u1,
body.qm-activity #u_sp,
body.qm-activity .s-ctner-menus .s-menu-item-underline,
body.qm-activity .s-news-rank-content,
body.qm-activity .s-news-wrapper .s-news-list-wrapper .hot-point,
body.qm-activity .s-top-left.s-isindex-wrap {
  -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;
}