Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
- Accept a quest under Discover -> Quests
- Press Ctrl+Shift+I to open DevTools
- Go to the
Consoletab - Paste the following code and hit enter:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Create a new directory called "Plumper" and dump all the files from "Plumpy" flat-ly into it | |
| // Example: Plumpy/images/native/1.png -> Plumper/images_native_1.png | |
| // Probably does not convert *all* but it does the most | |
| // Packs from: | |
| // https://github.com/acquitelol/rosiecord/tree/master/Packs/Plumpy | |
| const fs = require("fs"); | |
| const path = require("path"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| QRCode Scanner library | |
| https://gist.github.com/akirattii/35b033000cd4479c337ae5abb09d7429 | |
| @author: akirattii <tanaka.akira.2006@gmail.com> (http://mint.pepper.jp) | |
| @dependencies: | |
| + jquery | |
| + jsQR (https://github.com/cozmo/jsQR/) | |
