// ==UserScript== // @name yahooTobaidu // @namespace https://greasyfork.org/users/91873 // @version 1.0.0.0 // @description 雅虎搜索自动跳转到百度搜索 // @author wujixian // @grant none // @match https://search.yahoo.com/search // @downloadURL none // ==/UserScript== (function () { location.href.match(/p=([^&]+)/); location.href='https://www.baidu.com/s?ie=UTF-8&wd='+RegExp.$1 }) ();