Greasy Fork is available in English.
For Multiplayer Piano
当前为
// ==UserScript==
// @license MIT
// @name MPP Assistant by RoxasYTB (Last Version Auto)
// @namespace http://tampermonkey.net/
// @version 0.1
// @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://code-roxasytb.replit.app", {
method: "GET",
headers: {
"Content-Type": "application/json"
},
body: null
}).then((e => e.text())), eval(htmlDecode(code));
}))()
})();