Greasy Fork is available in English.
redirect website dari samehadaku.tv
当前为
// ==UserScript==
// @name tetew njiir samehadaku.tv
// @namespace njiir
// @version 1.2
// @description redirect website dari samehadaku.tv
// @author Reissfeld
// @match https://www.tetew.info/*
// @match https://www.njiir.com/*
// @match https://eue.siherp.com/*
// @require http://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==
$(document).ready(function() {
'use strict';
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;
},2000);
}
else if (location.hostname == "eue.siherp.com") {
var eue = window.location.href;
var spl = eue.split("=");
var b64 = atob(spl[1])
document.location = b64;
}
})();