// ==UserScript== // @name 优化百度首页 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 改百度下面的白色为透明,优化顶部栏 // @author You // @match https://www.baidu.com // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; //$("#s-top-left").remove();//去除顶部栏 //$("#s_top_wrap").remove();//去除顶部栏 // $("#head_wrapper #kw").css("background-color","rgba(0,0,0,0)"); $("#bottom_layer").css("background","none"); $("html").css("overflow-y","hidden"); $(".s-skin-hasbg #head_wrapper .s_btn").css("background","none"); $("#head_wrapper .s_btn").css("background-color","none"); })();