// ==UserScript== // @name BaiduIndexBackground(百度主页背景切换并且去掉推荐广告) // @namespace https://steamcommunity.com/id/dadadayezi/ // @version 0.1.4 // @description 默认替换背景是可可萝,为了美观顺带干掉了首页的新闻推荐 // @author ChangMenC // @match *://www.baidu.com // @grant none // @include *://www.baidu.com // @downloadURL none // ==/UserScript== (function() { //添加背景div $("#wrapper").before("
"); //$("#wrapper").before("
"); //获取到推荐新闻div的对象 var thisNode=document.getElementById("s_wrap"); //删除该div thisNode.parentElement.removeChild(thisNode); //删除左上角导航栏的hao123 $(function() { $("a").each(function() { $(this).text() === "hao123" && $(this).remove(); }); }); })();