Greasy Fork镜像 支持简体中文。

屏蔽百度首页推荐流

屏蔽百度个人首页新出的推荐流

  1. // ==UserScript==
  2. // @name 屏蔽百度首页推荐流
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 屏蔽百度个人首页新出的推荐流
  6. // @author virgosnow
  7. // @match https://www.baidu.com/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // 屏蔽推荐两个字
  17. for (let e of document.getElementsByClassName("s-menu-item")) {
  18. if (e.getAttribute("data-id") != 100) {
  19. e.remove()
  20. }
  21. }
  22. // 屏蔽推荐流载体
  23. for (let e of document.getElementsByClassName("s-content")) {
  24. if (e.getAttribute("data-id") != 100) {
  25. e.remove()
  26. }
  27. }
  28. // 延时200毫秒,等待加载完毕时点击我的关注
  29. setTimeout(function(){document.getElementById("s_menu_mine").click()}, 200)
  30. })();

QingJ © 2025

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