Greasy Fork is available in English.
解决黑白滤镜
// ==UserScript==
// @name 除去黑白滤镜
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 解决黑白滤镜
// @author Jacky
// @match *://*/*
// @icon
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
let html=document.getElementsByTagName('html');
html[0].style.WebkitFilter='none';
let body=document.getElementsByTagName('body');
body[0].classList.remove("big-event-gray");;
})();