Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript==
// @name tetew siHerp njiir
// @namespace njiir
// @version 1
// @description try to take over the world!
// @author Reissfeld
// @match https://www.tetew.info/*
// @match https://www.siherp.com/*
// @match https://www.njiir.com/*
// @require http://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==
$(document).ready(function() {
'use strict';
var icon = '<link rel="icon" href="https://www.samehadaku.tv/wp-content/uploads/2016/11/fav-60x60.jpg" sizes="32x32">';
document.getElementsByTagName("head")[0].innerHTML += icon;
if (location.hostname == "www.tetew.info") {
var tetew = $("a[rel='nofollow']").attr('href');
document.location = tetew;
}
else if (location.hostname == "www.njiir.com") {
setTimeout(function() {
var njiir = document.getElementsByTagName('a')[4].getAttribute("href");
document.location = njiir;
},3000);
}
})();