This script is created for research and education purposes. Abusive usage of this script is not tolerated and the author is not responsible for any damage or harm caused due to usage of the script.
A userscript for Blooklet, compatible with tampermonkey.
Features such as skin unlocks work by intercepting blooket's request to its server and modifying the response data to unlock skins. This request only happens once, so once the request is made, the feature can no longer be enabled/disabled.
- Easy to use mod menu, just use tampermonkey/paste in console
- Showing quiz data
- Favourites, play count, internal ID, name, description
- View all questions and answers in new tab(login required)
- Unlock all skins
The ability to unlock skins requires the name of the skin to be known, include those of which that are hidden. If you know a skin name and would like to contribute, please open an issue and it will be added.
- Install Tampermonkey.
- Add the contents of index.js to tampermonkey.
- Restart your browser.
- Open https://www.blooket.com/play/
- Use right ctrl to activate/disactivate the menu.
- Press Ctrl + Shift + I to open devtools.
- Open console.
- Vue.js V2 is required for this mod. Fetch Vue.js and evaluate its contents.
fetch("https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js")
.then((r) => r.text()
.then((r) => eval(r)))
- Copy and paste contents of index.js into your console.