Greasy Fork is available in English.

PKB-MOD

PKB Mod Vanis.Io

Autor
Vez Plays
Dziennych instalacji
1
Wszystkich instalacji
2 537
Oceny
1 0 0
Wersja
1.1
Utworzono
07-11-2020
Zaktualizowano
11-11-2020
Kompatybilność
Kompatybilny z przeglądarką Firefox Kompatybilny z przeglądarką Chrome Kompatybilny z przeglądarką Opera
Licencja
Brak licencji
Dotyczy

// ==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 = "

Connecting... Please be patient

";

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