// ==UserScript== // @name 百度首页去广告 百度去广告 去广告 百度搜索去广告 // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.2.0 // @description 百度首页去广告 百度去广告 去广告 百度搜索去广告 // @author liuhuajun // @match *://www.baidu.com* // @match *://www.baidu.com/* // ==/UserScript== (function() { 'use strict'; document.querySelector(".new_search_guide_bub").setAttribute("style", "display: none"); document.querySelector(".s-hotsearch-title").setAttribute("style", "display: none"); document.querySelector(".s-hotsearch-content").setAttribute("style", "display: none"); document.getElementById("s-top-left").setAttribute("style", "display: none"); document.getElementById("s_mod_weather").setAttribute("style", "display: none"); document.getElementById("bottom_layer").setAttribute("style", "display: none"); document.getElementsByClassName("new_search_guide_bub")[0].setAttribute("style", "display: none"); document.getElementsByClassName("operate-image")[0].setAttribute("style", "display: none"); // Your code here... })();