您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses rojadirecta redirection page and load the stream websites directly
当前为
// ==UserScript== // @name Bypass Rojadirecta redirection // @version 1.0 // @homepage https://github.com/bahhax404/rojadirecta // @description Bypasses rojadirecta redirection page and load the stream websites directly // @include *it.rojadirecta.eu/goto/* // @icon http://www.rojadirecta.me/static/roja.jpg // @copyright GNU General Public License v3.0 // @run-at document-body // @author Bahha // @namespace https://gf.qytechs.cn/users/186498 // ==/UserScript== //retreive the redirection page url var redirectionPageLink = window.location.href ; // retreive the actual url for the stream website var directLink = redirectionPageLink.slice(redirectionPageLink.indexOf("goto/") + 5); //create the link to the page var linkToPage = document.createElement("a"); //add the link to <a> tag linkToPage.href = "http://"+ directLink ; //add a class to <a> tag to make sure we select the correct link . linkToPage.className = "goToStream"; //function to click the link function goToStream() { //append the link to the page document.body.appendChild(linkToPage); //select the link we appended to the page var goToPage = document.getElementsByClassName("goToStream"); //Go to the page goToPage[0].click(); } //calling the function goToStream();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址