Skip to content
View Glixerz's full-sized avatar
💭
Available
💭
Available
  • Goki-Mon
Block or Report

Block or report Glixerz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Glixerz/README.md

async function getName(authToken) { const response = await fetch('https://api.blooket.com/api/users/verify-token?token=JWT+' + authToken); const data = await response.json();

return data.name };

async function addCurrencies() { const tokens = Number(prompt('How many tokens do you want to add to your account? (10000 daily)')); const myToken = localStorage.token.split('JWT ')[1];

if (tokens > 10000) { alert('You can add up to 10000 tokens daily.') }

const response = await fetch('https://api.blooket.com/api/users/add-rewards', { method: "PUT", headers: { "referer": "https://www.blooket.com/", "content-type": "application/json", "authorization": localStorage.token }, body: JSON.stringify({ addedTokens: tokens, addedXp: 300, name: await getName(myToken) }) });

if (response.status == 200) { alert(${tokens} tokens and 300 XP added to your account!); } else { alert('An error occured.'); }; };

addCurrencies();

Popular repositories

  1. Blooket-Hacks Blooket-Hacks Public

    A ton of blooket hacks

    550 1.2k

  2. BlooketTokens BlooketTokens Public

    Free Blooket Tokens

    102 123

  3. Blooket-Bots Blooket-Bots Public

    Spam Games With Bots

    9 58

  4. Glixerz Glixerz Public

    Config files for my GitHub profile.

    3

  5. I-Ready-Minutes I-Ready-Minutes Public

    Get free minutes

    3 1

  6. Spam-Blooket-Box Spam-Blooket-Box Public

    Just spam the boxes by pasting this code in console of Ctrl + Shift + J (Thanks to Glizzy)

    3 4