soTobaidu

360搜索自动跳转到百度搜索

  1. // ==UserScript==
  2. // @name soTobaidu
  3. // @namespace https://greasyfork.org/users/91873
  4. // @version 1.0.0.0
  5. // @description 360搜索自动跳转到百度搜索
  6. // @author wujixian
  7. // @grant none
  8. // @match *://www.so.com/*
  9. // ==/UserScript==
  10. (function () {
  11. location.href.match(/q=([^&]+)/);
  12. location.href='https://www.baidu.com/s?ie=UTF-8&wd='+RegExp.$1
  13. }) ();