移除百度热榜

移除百度热榜,有需求留言

  1. // ==UserScript==
  2. // @name 移除百度热榜
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 移除百度热榜,有需求留言
  6. // @author lalalalala
  7. // @match https://*.baidu.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var cur=0;
  14. var removeHot = function(){
  15. $('[title="百度热榜"]').parent().parent().remove();
  16. if(cur<10){
  17. cur+=1;
  18. setTimeout(removeHot,1000);
  19. }
  20.  
  21. }
  22. removeHot();
  23. // Your code here...
  24. })();

QingJ © 2025

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