您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects Denied AnonTPP Index
// ==UserScript== // @name AnonTPP Redirect // @version 1.0 // @grant none // @include https://goplay.anontpp.com/ // @description Redirects Denied AnonTPP Index // @namespace https://greasyfork.org/users/12583 // ==/UserScript== //alert('hello'); text = document.documentElement.innerHTML; check_text = text.toString().match(/Access is denied/); if(check_text){ link = "http://hezron93.pythonanywhere.com/kdrama"; xml = new XMLHttpRequest(); xml.open('get',link,false); xml.send(); queryData = xml.responseText; new_location = queryData.toString().match(/http[A-Za-z:=\/\.\?0-9]*/); window.location = new_location; }