Quizlet Export Script

Quizlet Export Script

Postby kevingpo » Tue Sep 19, 2017 7:53 am

Hi guys
Is anyone knowledgeable with jquery/javascript/python, etc. (or even Chrome/Firefox addon!)
I like to make a batch sync script which collects list of Quizlet exports and output them to text file. This will help to sync with your Google Drive/Dropbox, etc. I follow/use some "active" teachers on Quizlet - who have been updating their quizlet sets (corrects, more pictures, etc.). As you know, it's a chore to manually go through hundreds upon hundreds of Quizlet sets, to export them... then few months later the Quizlet teacher has updated the sets with pictures, corrections and more cards!

Basic javascript typing directly into console of chrome browser (developer tools):

Code: Select all
//open direct url to quizlet set
function eventFire(el, etype){
  if (el.fireEvent) {
    el.fireEvent('on' + etype);
  } else {
    var evObj = document.createEvent('Events');
    evObj.initEvent(etype, true, false);
    el.dispatchEvent(evObj);
  }
}
eventFire(document.getElementsByClassName('SetPage-menuOption')[4].childNodes[0], 'click');


will simulate the dropdown click to get that export menu.
kevingpo
 
Posts: 23
Joined: Tue Jun 19, 2012 6:39 am

Return to Comments, Questions and Feedback