您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
redirect website dari samehadaku.tv
当前为
// ==UserScript== // @name tetew njiir siherp samehadaku.tv // @namespace njiir // @version 1.3 // @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/* // @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.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); } })();