Greasy Fork is available in English.

Vortex Client kour.io

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

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==
// @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);
      }
    }
  });
})();