Skip to content

Instantly share code, notes, and snippets.

@ryanburnette
Last active May 25, 2017 19:13
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ryanburnette/783d62ead007b1c8cb2c5ac0f893fd15 to your computer and use it in GitHub Desktop.
How I downloaded all my photos from Instagram.
var grams = document.getElementsByTagName('img');
var times = grams.length;
for ( var i=0; i < times; i++ ) {
console.log( grams[i].getAttribute('src') );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment