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