Greasy Fork is available in English.

移除百度贴吧灰色滤镜

remove tieba gray filter

  1. // ==UserScript==
  2. // @name 移除百度贴吧灰色滤镜
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description remove tieba gray filter
  6. // @author mmi
  7. // @match *.tieba.baidu.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.querySelector("html").classList.remove("tb-allpage-filter")
  16. // Your code here...
  17. })();