Greasy Fork

来自缓存

Google to Yahoo

Redirects Google to Yahoo

当前为 2016-03-27 提交的版本,查看 最新版本

  // ==UserScript==
// @name        Google to Yahoo
// @description Redirects Google to Yahoo
// @include     http://*.google.*/*
// @version     1
// @namespace lol
// ==/UserScript==
    if(content.document.location == "http://google.com"){
            window.location.replace("http://yahoo.com")
}