Greasy Fork is available in English.
Premium QoL & visual enhancement client for kour.io. No cheats. Purely cosmetic & UX improvements.
// ==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);
}
}
});
})();