Bypass Rojadirecta redirection

Bypasses rojadirecta redirection page and load the stream websites directly

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Bypass Rojadirecta redirection
// @version      1.4
// @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)) {
      link = links[i].href.slice(links[i].href.indexOf("goto/") + 5);
      links[i].href = "http://" + link;
    
      }

    }
    //fix agenda width
    var widthFix = document.getElementsByClassName("scrollagenda");
    widthFix[0].style.width = "520px";
//that's it :)