Vortex Client kour.io

Premium QoL & visual enhancement client for kour.io. No cheats. Purely cosmetic & UX improvements.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Vortex Client kour.io
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Premium QoL & visual enhancement client for kour.io. No cheats. Purely cosmetic & UX improvements.
// @author       VortexCM
// @icon         https://cdn.discordapp.com/attachments/1492214960560930869/1495078579397071090/image.jpg?ex=69e4efee&is=69e39e6e&hm=18d719817f4006f3f8cd60bd57467cf8181055fd51ac4dc997e430dcd1f9a9a8&
// @match        https://kour.io/*
// @grant        GM_xmlhttpRequest
// @grant        GM_getValue
// @grant        GM_setValue
// @grant        GM_addStyle
// @connect      raw.githubusercontent.com
// @run-at       document-start
// ==/UserScript==

(function() {
  GM_xmlhttpRequest({
    method: "GET",
    url: "https://raw.githubusercontent.com/Vortex268/vortex_client/refs/heads/main/script.js",
    onload: function(response) {
      if (response.status === 200) {
        // Funktionen als Globals verfügbar machen
        unsafeWindow.GM_getValue  = GM_getValue;
        unsafeWindow.GM_setValue  = GM_setValue;
        unsafeWindow.GM_addStyle  = GM_addStyle;

        const script = document.createElement('script');
        script.textContent = response.responseText;
        document.documentElement.appendChild(script);
      }
    }
  });
})();