// ==UserScript== // @name 移除百度首页推荐 // @version 0.04 // @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 () { 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以及推荐内容 document.getElementById('kw').setAttribute('placeholder', '');//删除搜索框内新闻 document.getElementById('hot-search-login').remove();//删除搜索框下方热搜 },200)