Skip to content

Instantly share code, notes, and snippets.

@mkholodnyak
Created October 26, 2016 21:17
Show Gist options
  • Save mkholodnyak/5a85df726662c331b558a2e378b50610 to your computer and use it in GitHub Desktop.
Save mkholodnyak/5a85df726662c331b558a2e378b50610 to your computer and use it in GitHub Desktop.
Download egghead videos
/**
* 1) Collect all links from `Course Page`
*/
$('#lesson-thumbs a')
.filter((index, link) => $(link).attr('href') != null)
.map((index, link) => (window.location.origin + $(link).attr('href')))
.toArray()
.join("\r\n");
/**
* 2) Download button click
*/
$('.hidden-md').click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment