百度搜索去除百家号结果

向搜索结果中的百家号Say NO 本脚本并非从搜索结果删除百家号而是在搜索请求时表明无需baiji域名出现在结果 by:作死联萌 第一次写油猴脚本 XD

目前为 2019-01-25 提交的版本。查看 最新版本

// ==UserScript==
// @name 百度搜索去除百家号结果
// @namespace http://www.zslm.org
// @version      0.2
// @description  向搜索结果中的百家号Say NO 本脚本并非从搜索结果删除百家号而是在搜索请求时表明无需baiji域名出现在结果 by:作死联萌 第一次写油猴脚本 XD
// @author Genius6do
// @match https://www.baidu.com/*
// @match http://www.baidu.com/*
// @run-at document-body
// @grant none
// ==/UserScript==
(function() {
    'use strict';
    console.log("baidu_strat");
    $("input[type='submit']").click(function(){
      console.log("baidu_onclick");
      var str_ = $("input[name='wd']").val();
      if(str_.indexOf("-baijia") == -1 ){
        $("input[name='wd']").val($("input[name='wd']").val()+" -baijia");
      }
    })
    console.log("baidu_stop");
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址