移除百度首页底部信息栏脚本

作者:outlela  来源:本站原创   发布时间:2024-3-30 9:57:28

首先要下载一个浏览器插件:https://www.tampermonkey.net/changelog.php?show=iikm

也就是我们常说的油猴/篡改猴

然后添加新脚本

image.png

脚本代码如下:

// ==UserScript==
// @name         remove footer
// @namespace    http://tampermonkey.net/
// @version      2024-03-30
// @description  try to take over the world!
// @author       You
// @match        https://www.baidu.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById('bottom_layer').remove();//这行移除底部栏
document.getElementById('s-top-left').childNodes[1].remove();
document.getElementById('s-top-left').childNodes[2].remove();
document.getElementById('s-top-left').childNodes[2].remove();
document.getElementById('s-top-left').childNodes[4].remove();
})();

保存刷新看看效果:

image.png

*本文最后修改于:2024-3-30 10:5:12
本文标签: 移除 百度 首页 底部 信息栏 脚本
本文由本站原创发布, 本文链接地址:https://outlela.com/share/186.html
转载或引用请保留地址并注明出处:outlela.com