Skip to content

Instantly share code, notes, and snippets.

@shvelo
Last active August 29, 2015 14:07
Show Gist options
  • Save shvelo/18ecca4efbfef4a07515 to your computer and use it in GitHub Desktop.
Save shvelo/18ecca4efbfef4a07515 to your computer and use it in GitHub Desktop.
Download all images on page. (dangerous, can open shit ton of windows)
var downloadLink = document.createElement('a');
downloadLink.download = true;
for(i in document.images) { downloadLink.href = document.images[i].src; downloadLink.click() };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment