Greasy Fork is available in English.

PKB-MOD

PKB Mod Vanis.Io

Автор
Vez Plays
Инсталации дневно
0
Инсталации общо
2 541
Рейтинг
1 0 0
Версия
1.1
Създаден
07.11.2020
Обновен
11.11.2020
Съвместимост
Съвместим с Firefox Съвместим с Chrome Съвместим с Opera
Лиценз
Няма
Работи на

// ==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();
}
});