// ==UserScript== // @name 百度搜索去除百家号结果 // @namespace http://www.zslm.org // @version 0.1 // @description 向搜索结果中的百家号Say NO by:作死联萌 第一次写油猴脚本 XD // @author Genius6do // @match https://www.baidu.com/ // @run-at document-body // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; console.log("baidu_strat"); $("input[type='submit']").click(function(){ var str_ = $("input[type='text']").val(); if(str_.indexOf("-baijia") == -1 ){ $("input[type='text']").val($("input[type='text']").val()+" -baijia"); } }) console.log("baidu_stop"); })();