优化百度首页

改百度下面的白色为透明,优化顶部栏

// ==UserScript==
// @name         优化百度首页
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  改百度下面的白色为透明,优化顶部栏
// @author       You
// @match        https://www.baidu.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    //$("#s-top-left").remove();//去除顶部栏
    //$("#s_top_wrap").remove();//去除顶部栏
    // $("#head_wrapper #kw").css("background-color","rgba(0,0,0,0)");

    //$(".s-skin-hasbg #head_wrapper .s_btn").css("background","none");
   // $("#head_wrapper .s_btn").css("background-color","none");

    var wangzhi = window.location.href;
    if(wangzhi==="https://www.baidu.com/"){
        $("#bottom_layer").css("background","none");
        $("html").css("overflow-y","hidden");


        $("#su").click(function(){
                        $("html").css("overflow-y","auto");
        });
        $(".bdsug-overflow").click(
              $("html").css("overflow-y","auto")

       );
    };




})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址