您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make tournaments on RBR CZ with ease
// ==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); }