Skip to content

Instantly share code, notes, and snippets.

@merqurio
Created March 4, 2017 20:16
Show Gist options
  • Save merqurio/349caef07d41d49bce87acbb7652d823 to your computer and use it in GitHub Desktop.
Save merqurio/349caef07d41d49bce87acbb7652d823 to your computer and use it in GitHub Desktop.
Instagram photo export
// Go to a profile and scroll to the last photo.
imgs = document.querySelectorAll("img");
urls=[];
for (img of imgs){
u=img.src.split("/");
urls.push("https://scontent-lga3-1.cdninstagram.com"+"/"+u[u.length-2]+"/"+u[u.length-1]+"?dl=1")
};
for (l of urls){window.open( l, '_blank' )}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment