From 0ad1655678571e3e1a06ecbad8a211395f9b1360 Mon Sep 17 00:00:00 2001 From: 2603003199a <58811224+skybird23333@users.noreply.github.com> Date: Fri, 22 Oct 2021 20:45:43 +0800 Subject: [PATCH] Update README.md --- README.md | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6609945..ef10af7 100644 --- a/README.md +++ b/README.md @@ -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.