Skip to content

Instantly share code, notes, and snippets.

@felixmon
Last active May 31, 2019 04:31
Show Gist options
  • Save felixmon/a898864112051696cf40a89a0da2bc66 to your computer and use it in GitHub Desktop.
Save felixmon/a898864112051696cf40a89a0da2bc66 to your computer and use it in GitHub Desktop.
Batch Download Images with Chrome Developer Tools

Batch Download Images with Chrome Developer Tools

  1. Enter Developer Mode
  2. Right click on randome image and choose "copy all as cURL"
  3. Paste in any text editor
  4. Replace all

curl '

with

curl -O '

  1. Save as a shell script, say, "curl-sh.sh"
  2. Open Terminal then run
chmod +x "curl-sh.sh"
./curl-sh.sh
  1. Done.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment