// ==UserScript== // @name BaiduIndexBackground(百度主页背景切换并且去掉推荐广告) // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author ChangMenC // @match *://www.baidu.com // @grant none // @include *://www.baidu.com // @downloadURL none // ==/UserScript== (function() { //添加背景div $("#wrapper").before("
"); //获取到推荐新闻div的对象 var thisNode=document.getElementById("s_wrap"); //删除该div thisNode.parentElement.removeChild(thisNode); })();