Skip to content

Instantly share code, notes, and snippets.

@danielmahal
Last active February 27, 2017 11:41
Show Gist options
  • Save danielmahal/d98c844cc4f6688a085cecbc0729063c to your computer and use it in GitHub Desktop.
Save danielmahal/d98c844cc4f6688a085cecbc0729063c to your computer and use it in GitHub Desktop.
Download all images (<img>) from webpage
javascript:(function(){ document.querySelectorAll('img').forEach(function(image) { var link = document.createElement('a'); link.setAttribute('download', true); link.setAttribute('href', image.src); link.click(); }) })();
@danielmahal
Copy link
Author

document.querySelectorAll('img').forEach(function(image) {
  var link = document.createElement('a');
  link.setAttribute('download', true);
  link.setAttribute('href', image.src);
  link.click();
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment