1.安装油猴(Tampermonkey插件)
下载油猴:官网油猴tampermonkey官网_油猴脚本手机版油猴插件下载
安装:360浏览器安装可以参考这边文章。 地址:http://www.xz7.com/article/86938.html
其实就是下载crx文件后,直接双击运行就行。
安装完毕。
2.编写脚本
2.1点击浏览器的油猴标志。选中添加新脚本
2.2 编辑脚本
完整复制以下红色代码(切记全部复制)
// ==UserScript==
// @name 屏蔽百度热搜
// @namespace none
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://www.baidu.com/*
// @match http://www.baidu.com/*
// @icon http://www.baidu.com/favicon.ico
// @grant none
// ==/UserScript==
function task() {
// 这里是定时任务要执行的代码
//alert(1);
//console.log('11111')
const hot_search = document.querySelector('#content_right');
if (hot_search != null) {
hot_search.style.display = "none";
hot_search.style.display = 'none'; // 隐藏元素
}
}
(function() {
'use strict';
setInterval(task, 50); // 每隔1秒执行一次task函数
}
)();
2.3 保存即可
重新运行百度搜索,