Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
skybird23333 authored Oct 22, 2021
1 parent e670e6f commit 0ad1655
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,26 @@
# blooklet-utility-mod
A userscript for Blooklet, compatible with tampermonkey.

# Features
**Due to state management, some features will not work until joining the quiz, and some will have to be configured before joining the quiz. Please read each module's description.**
- Show quiz metadata
- Unlock partial skins

# Usage
Vue.js v2 is required.
## Tampermonkey
1. Install Tampermonkey.
2. Add the contents of index.js to tampermonkey.
3. Restart your browser.
4. Open https://www.blooket.com/play/
5. Use right ctrl to activate/disactivate the menu.

1. Add the script in tampermonkey
2. Restart your browser
3. Use right ctrl to activate/disactivate the menu.
## Console
1. Press Ctrl + Shift + I to open devtools.
2. Open console.
3. Vue.js V2 is required for this mod. Fetch Vue.js and evaluate its contents.
```js
fetch("https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js")
.then((r) => r.text()
.then((r) => eval(r)))
```
4. Copy and paste contents of index.js into your console.

0 comments on commit 0ad1655

Please sign in to comment.