Files
automatic-dispose/userscript.user.js
2018-11-24 14:43:59 +01:00

15 lines
721 B
JavaScript
Executable File

// ==UserScript==
// @name LSS - Automatische Disposition
// @namespace Leitstellenspiel
// @description Disponiert die Einsätze ein einer Semi- bzw Vollautomatik
// @downloadURL https://github.com/Dexus/automatic-dispose/raw/master/userscript.user.js
// @include http*://www.leitstellenspiel.de/*
// @version 1.0
// @author Dexus
// @grant none
// ==/UserScript==
var da_lss_adis_time = new Date().getTime();
var scriptElement = document.createElement("script");
scriptElement.type = "text/javascript";
scriptElement.src = "https://raw.josef-froehle.de/Dexus/automatic-dispose/master/autoload.js?" + da_lss_adis_time;
document.body.appendChild(scriptElement);