过滤百度热榜

百度热榜扰我心智

目前为 2021-04-04 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name 过滤百度热榜
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 百度热榜扰我心智
  6. // @author King
  7. // @match https://www.baidu.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var s = null
  14. var q = null;
  15. var interval = null;
  16. console.log("启动");
  17. function go(){
  18. interval = setInterval(function(){
  19. if(interval != null ) clearInterval(interval);
  20. s = document.getElementById("con-ar");
  21. q = document.getElementById("FYB_RD");
  22. if(s != null) s.style.display="none";
  23. if(q != null) q.style.display="none";
  24. go();
  25. },30)
  26. }
  27. go();
  28. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址