Skip to content

Instantly share code, notes, and snippets.

@luckycdev
Last active April 27, 2022 18:18
Show Gist options
  • Save luckycdev/6ea7dedc05b3ae44b50c48743fba7ea4 to your computer and use it in GitHub Desktop.
Save luckycdev/6ea7dedc05b3ae44b50c48743fba7ea4 to your computer and use it in GitHub Desktop.
check a minecraft account info bookmarklet

Checks a Minecraft account's uuid and migration status. (using iaero's axis api)

Code:

javascript:
var a="https://axis.iaero.me/accinfo?username=";
var b=prompt("What is the username of the Minecraft account you would like to look up?", "Notch");
var c="&format=json";
if(b==="")
{
alert("invalid response")
}
else if(b===" ")
{
alert("invalid response");
}
else if (b!=null)
{
open(a+b+c);
}

Bookmarklet:

javascript:var a="https://axis.iaero.me/accinfo?username="; var b=prompt("What is the username of the Minecraft account you would like to look up?", "Notch"); var c="&format=json"; if(b===""){alert("invalid response")}else if(b===" "){alert("invalid response");} else if (b!=null){open(a+b+c);}
javascript:var a="https://axis.iaero.me/accinfo?username="; var b=prompt("What is the username of the Minecraft account you would like to look up?", "Notch"); var c="&format=json"; if(b===""){alert("invalid response")}else if(b===" "){alert("invalid response");} else if (b!=null){open(a+b+c);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment