我写了一个 tampermonkey 脚本将一些网站重定向到另一个网站,但每次第二个目标网站都不起作用,我已经更改了两次目标网站但它仍然不起作用。所以我认为这可能是一些错误或错误我的剧本。 这是我的代码,但是在 pixiv 上它不起作用。有人能帮我吗?
// ==UserScript==
// @name New sf
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *://*/*
// @icon none
// @grant none
// ==/UserScript==
var url = window.location.host;
if (url.match("//krunker.io") === null) {
url = window.location.href;
if (url.match("//krunker.io") !== null){
url = url.replace("//krunker.io", "//youtube.com");
}
else {
return;
}
}
else if (url.match("//www.pixiv.net") === null ) {
url = window.location.href;
if (url.match() !==null) {
url= url.replace("//www.pixiv.net","//youtube.com");
}
else {
return;
}
}
console.log(url);
window.location.replace(url);
我的脚本有问题吗? 如果有高手请回答我,万分感谢