百度首页底栏去除

将百度首页foot底栏的bottom_layer标签和辅助模式s_side_wrapper按钮去除掉,使其首页简单美观又不清除首页上方的主要功能快捷入口。

// ==UserScript==
// @name         百度首页底栏去除
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  将百度首页foot底栏的bottom_layer标签和辅助模式s_side_wrapper按钮去除掉,使其首页简单美观又不清除首页上方的主要功能快捷入口。
// @author       ylgzs666
// @match        https://www.baidu.com/
// @icon         https://www.baidu.com/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    $('#bottom_layer').remove()
    $('#s_side_wrapper').remove()

})();