// ==UserScript== // @name 移除百度首页推荐 // @version 0.03 // @author wangws // @namespace https://www.acfun.cn/u/955021 // @match https://www.baidu.com/ // @match https://ipv6.baidu.com/ // @description:zh-cn 百度首页推荐内容移除 // @description 百度首页推荐内容移除 // @license MIT // @downloadURL none // ==/UserScript== setTimeout(function (){//延迟100毫秒执行 let mine = document.getElementById('s_menu_mine')//我的关注tab栏 mine.click();//点开我的关注 document.getElementsByClassName('s-menu-item')[1].parentNode.removeChild(document.getElementsByClassName('s-menu-item')[1]);//删除推荐tab以及推荐内容 },100);