您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses rojadirecta redirection page and load the stream websites directly
当前为
// ==UserScript== // @name Bypass Rojadirecta redirection // @version 1.2 // @license LGPLv3 // @homepage https://github.com/bahhax404/rojadirecta // @description Bypasses rojadirecta redirection page and load the stream websites directly // @include *.rojadirecta.* // @icon http://www.rojadirecta.me/static/roja.jpg // @run-at document-body // @author Bahha // @namespace https://gf.qytechs.cn/users/186498 // ==/UserScript== //retreive all the urls var goto = "goto" //retreive all the urls on the page var links = document.getElementsByTagName("a"); // retrieve urls with goto word and replace them with the actual stream link. var testlink = links[4].href = links[4].href.slice(links[4].href.indexOf("goto/") + 5); for (var i = 0; i < links.length; i++) { if (links[i].href.match(goto)) { link = links[i].href.slice(links[i].href.indexOf("goto/") + 5); links[i].href = "http://" + link; } } //that's it :)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址