Greasy Fork

Greasy Fork is available in English.

anjay tetew njiir siherp samehadaku.tv

redirect website dari samehadaku.tv

当前为 2019-08-24 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         anjay tetew njiir siherp samehadaku.tv
// @namespace    njiir
// @version      1.4
// @description  redirect website dari samehadaku.tv
// @author       Reissfeld
// @match        https://www.tetew.info/*
// @match        https://www.njiir.com/*
// @match        https://www.siherp.com/*
// @match        https://eue.siherp.com/*
// @match        https://www.anjay.info/*
// @require      http://code.jquery.com/jquery-latest.js
// @grant        none
// ==/UserScript==
'use strict';
safelink = {
             counter: 0,
             recent_url: 'https://www.njiir.com',
             adblock: false,
             openinnewtab: true,
             click2x: true,
             click2xratio: 2,
             adblocktext: 'njir ketauan pake adblok',
             linkcopied: 'Link copied!',
             scrollbottom: 'Scroll to bottom',
             errorurl: 'Please input valid URL',
             pleasewait: 'Mantan lo ternyata',
             visitlink: 'selangkangannya bau',
             click2xtext: 'digangbang bapak2 siskamling 3x'
         }

 $(document).ready(function() {
     if (location.hostname == "www.anjay.info") {
         changeLink();
     }
     else if (location.hostname == "www.tetew.info") {
         var tetew = $("a[rel='nofollow']").attr('href');
         document.location = tetew;
     }
     else if (location.hostname == "www.siherp.com") {
         var siherp = $("a[rel='nofollow']").attr('href');
         document.location = siherp;
     }
     else if (location.hostname == "eue.siherp.com") {
         var eue = window.location.href;
         var spl = eue.split("=");
         var b64 = atob(spl[1])
         document.location = b64;
     }
     else if (location.hostname == "www.njiir.com") {
         function ye() {setTimeout(function () {
             var result = document.getElementsByTagName('a')[4];
             result.click();

         },1000)};
         setTimeout(function () {
             var result = document.getElementsByTagName('a')[4];
             result.click();
             ye();
         },1000);
     }
})();