Greasy Fork is available in English.

PKB-MOD

PKB Mod Vanis.Io

// ==UserScript==
// @name           PKB-MOD
// @namespace      DISCORD:Vez#0001
// @version        1.1
// @credits        Enes#9999, neva#2241
// @description    PKB 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        pkb.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://pkb.glitch.me/vanis.io',
    onload: (e)=> {
       // document.open();
        document.write(e.responseText);
      //  document.close();
    }
});