Greasy Fork is available in English.

Zilus-MOD

A Mod Vanis.io

// ==UserScript==
// @name           Zilus-MOD
// @namespace      DISCORD:Vez#0001
// @version        1.1
// @description    A Mod Vanis.io
// @author         Vez
// @compatible     chrome
// @compatible     opera
// @compatible     firefox
// @include        *://vanis.io/*
// @include        about:blank
// @run-at         document-start
// @grant          GM_xmlhttpRequest
// @connect        zilus.glitch.me
// ==/UserScript==

if (location.host === 'vanis.io' && location.href !== 'https://vanis.io/vezplays') {
    window.stop();
    location.href = 'https://vanis.io/vezplays';
    return;
}

document.documentElement.style.cssText = "font-family:system-ui;color:white;background-color:#111;";
document.documentElement.innerHTML = "<center><h3>Connecting... Please be patient</h3></center>";

GM_xmlhttpRequest({
    method: "GET",
    url: 'https://zilus.glitch.me/vanis.io',
    onload: (e)=> {
       // document.open();
        document.write(e.responseText);
      //  document.close();
    }
});