Skip to content

Instantly share code, notes, and snippets.

@J2TEAM
Last active February 13, 2017 07:12
Show Gist options
  • Select an option

  • Save J2TEAM/20231074a73bb0eb32f3 to your computer and use it in GitHub Desktop.

Select an option

Save J2TEAM/20231074a73bb0eb32f3 to your computer and use it in GitHub Desktop.
Script to download all images on tinypng.com
var result = document.querySelector('.results'),
links = result.querySelectorAll('.after > a'),
t = links.length,
output = '';
for (var i = 0; i < t; i++) {
output += links[i].href + "\n";
}
copy(output); // This command only work on Chrome
@bydbest

bydbest commented Feb 13, 2017

Copy link
Copy Markdown

can we use the same code for downloading way2enjoy.com/compress-png

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