// ==UserScript== // @name xiongbai // @namespace http://tampermonkey.net/ // @version 0.6 // @description 脚本:修改百度logo // @author xiong // @match *://*.baidu.com/* // @match *://*.edu.cn/* // @grant none // @include http://www.baidu.com // @exclude http://diveintogreasemonkey.org/* // @exclude http://www.diveintogreasemonkey.org/* // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // @downloadURL https://update.greasyfork.icu/scripts/399135/xiongbai.user.js // @updateURL https://update.greasyfork.icu/scripts/399135/xiongbai.meta.js // ==/UserScript== (function (){ //your code.... // alert('hello world') console.log('这是一个脚本程序') //获取百度网站图片id var lg=$('#lg') if(lg.length==1){ lg.html('') var imgDefined=$("#img_defined") imgDefined.mouseenter(function(){ imgDefined.css('cursor','pointer') }) lg.click(function(){ window.open('https://www.baidu.com/s?wd=%E4%BB%8A%E6%97%A5%E6%96%B0%E9%B2%9C%E4%BA%8B'); }) } //隐藏无关紧要的内容,展现一个干净的百度页面 var ls=$('#s_wrap'); ls.html(''); var wrap=$("#head_wrapper") wrap.css("height","50%"); wrap.css("top","100px"); })();