Vortex Client kour.io

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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