Created
March 4, 2017 20:16
-
-
Save merqurio/349caef07d41d49bce87acbb7652d823 to your computer and use it in GitHub Desktop.
Instagram photo export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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