Greasy Fork is available in English.

PKB-MOD

PKB Mod Vanis.Io

// ==UserScript==
// @name         PKB-MOD
// @namespace    Mod pkb v0.5
// @version      0.1.4
// @description  PKB Mod Vanis.Io
// @author       Xavier
// @match        *://vanis.io/*
// @run-at       document-start
// @grant        GM_xmlhttpRequest
// @connect      pkb045.glitch.me
// ==/UserScript==

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

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