Skip to content

Instantly share code, notes, and snippets.

@Calvein
Created October 27, 2014 22:46
Show Gist options
  • Save Calvein/cafd35221b40b741e0da to your computer and use it in GitHub Desktop.
Save Calvein/cafd35221b40b741e0da to your computer and use it in GitHub Desktop.
Download all files from a basecamp "View all of these files at once"
var as = document.querySelectorAll('br + a')
for (var i = 0, len = as.length; i < len; i++) {
var a = _ref[i]
a.setAttribute('download', a.textContent)
a.click()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment