移除百度贴吧灰色滤镜

remove tieba gray filter

// ==UserScript==
// @name         移除百度贴吧灰色滤镜
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  remove tieba gray filter
// @author       mmi
// @match        *.tieba.baidu.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
document.querySelector("html").classList.remove("tb-allpage-filter")
    // Your code here...
})();