Vortex Client kour.io

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

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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