我想将一个 URL 重定向到另一个 URL。例如,如果我要输入:
google.com
然后按回车,它应该将我重定向到:
yahoo.com
我在上一个帖子中找到了这个的代码,但不幸的是,它适用于我不想要的所有 URL。此外,一旦重定向完成(在 yahoo.com),页面将再次重新加载,无限循环。
编辑:当前代码:
// ==UserScript==
// @name Google to Yahoo
// @description Redirects Google to Yahoo
// @include http://*.google.*/*
// @version 1
// ==/UserScript==
if(content.document.location == "http://google.com"){
window.location.replace("http://yahoo.com")
}