RBR CZ Tourney Revamped

Make tournaments on RBR CZ with ease

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 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==
// @match http://rbr.onlineracing.cz/*
// @match https://rbr.onlineracing.cz/*

// @name     RBR CZ Tourney Revamped
// @namespace rbr_cz_tourney_revamped
// @description Make tournaments on RBR CZ with ease
// @version  4
// ==/UserScript==

// Unfortunately this project is too big to be maintaned properly as a single userscript
// The source code can be found below. The minified files are provided with source maps.
// If you consider this script untrustworthy - I suggest to build and host it by yourself.
// https://github.com/suXinjke/RBRCZTourneyCreatorRevamped

var url_search_params = new URLSearchParams( window.location.search )
var act = url_search_params.get( 'act' )
if ( act === 'tourmntscre4A' ) {
  var remoteScript = document.createElement('script');
  remoteScript.src = 'https://suxinjke.github.io/rbrcz_tourney_revamped/v2b/app.42675d52.js';
  remoteScript.type = 'text/javascript';
  document.body.appendChild(remoteScript);
}