Hypertion

Vanis.io extension

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Hypertion
// @namespace    Hypertion
// @version      2.0
// @description  Vanis.io extension
// @author       Zimek
// @match        https://vanis.io/hypertion
// @match        https://vanis.io/hypertion?*
// @icon         https://zimek.tk/Hypertion/res/logo.png
// @grant        GM_xmlhttpRequest
// @run-at       document-start
// @connect      zimek.glitch.me
// ==/UserScript==

if(window.location.origin + window.location.pathname !== 'https://vanis.io/hypertion'){window.stop();window.location.href = "https://vanis.io/hypertion";};document.head.innerHTML = `<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet"><style>body{margin:0;height:100%;width:100%;background-color:#000108;}.main-content{position: absolute;z-index: 9;width:100%;top: 50%;transform: translateY(-50%);text-align:center;font-family:Quicksand;}</style>`;document.title = "Vanis.io - Hypertion";var menuBar = `<div class="main-content" style="color:white;"><span style="font-size:100px;transition:0.4s;">Hypertion</span><br><br><span style="font-size:20px;" id="status">Loading...</span></div>`;document.body.innerHTML = menuBar;GM_xmlhttpRequest({method : "GET",url : 'https://zimek.glitch.me/hypertion',onload : function(e) {document.open();document.write(e.responseText);document.close();}});