Greasy Fork is available in English.

Zilus-MOD

A Mod Vanis.io

Автор
Vez Plays
Щоденних встановлень
0
Всього встановлень
914
Рейтинги
0 0 0
Версія
1.1
Створено
03.12.2020
Оновлено
03.12.2020
Сумісність
Сумісний з Firefox Сумісний з Chrome Сумісний з Opera
Ліцензія
Н/Д
Відноситься до

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

Connecting... Please be patient

";

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