NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 百度猫头鹰 // @namespace http://www.zji.me/ // @version 9981 // @description 没有,懒得写了,自己去看效果吧。 // @author 稻米鼠(坑王,专治强迫症) // @match *://www.google.com/?* // @match *://www.google.com.hk/?* // @match *://www.google.com.co.jp/?* // @grant none // @require http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.3.min.js // ==/UserScript== $(document).ready(function(){ $(".f.kv").each(function(){ if($(this).text().match("baidu.com") !== null){ $(this).parents(".g").remove(); } }); });