Skip to content

Instantly share code, notes, and snippets.

View eiiot's full-sized avatar
👨‍💻

Eliot Hertenstein eiiot

👨‍💻
View GitHub Profile
@eiiot
eiiot / quizlet-scraper.js
Created March 27, 2024 06:24 — forked from nodaguti/quizlet-scraper.js
Quizlet to CSV
/**
* Convert a list on Quizlet into CSV-formatted text.
* Usage:
* i) Copy and paste into your browser's console.
* ii) Run it!
*/
(() => {
const terms = document.querySelectorAll('.SetPageTerms-term');
const csv = [];