您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
百度首页推荐内容移除
当前为
// ==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 // ==/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)