A Firefox extension that adds a download button to Quizlet sets, allowing you to save the terms and definitions as JSON.
- Clone this repository or download the files
- Go to
about:debugging#/runtime/this-firefox
- Click "Load Temporary Add-on"
- Open any file of the repository
- Navigate to any Quizlet set page
- Click see more at the bottom to load all terms
- Click the "Download JSON" button at the top of the page
- The set will be downloaded as
quizlet-set.json
The downloaded JSON file will have the following structure:
[
{
"term": "Example term",
"definition": "Example definition"
},
...
]