Bypasses rojadirecta redirection page and load the stream websites directly
当前为
// ==UserScript==
// @name Bypass Rojadirecta redirection
// @version 1.1
// @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://greasyfork.org/users/186498
// ==/UserScript==
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.
for (var i = 0; i < links.length; i++) {
if (links[i].href.match(goto)) {
links[i].href = links[i].href.slice(links[i].href.indexOf("goto/") + 5);
links[i].href = "http://" + links[i];
}
}
//that's it :)