Greasy Fork is available in English.

移除灰阶滤镜样式

仅仅只移除灰阶滤镜

@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;
}