devmade / instagram-private-downloader

Download photos from private instagram account. JavaScript code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

instagram-private-downloader

Only works if you follow someone and you are able to view their photos

The script downloads every image loaded in your viewport. Currently no solution for it, however in future releases I will consider adding it

Steps

  1. Press ctrl+shift+i or F12 or right click anywhere in page and select inspect element (Open developer tools in short :p)
  2. Select console tab in developer tools
  3. Please scroll down to bottom of the page and let those thumbnails appear or load. Else you will not be able to download them all.
  4. Simply copy and paste following in your console tab (this may sometime result in refusal to load the script, read solution given below)
var _ig_s = document.createElement('script');
_ig_s.src = "https://cdn.jsdelivr.net/gh/devsaurabhcb/instagram-private-downloader@latest/downloader.js"; 
document.body.appendChild(_ig_s);

or all these in one line

var _ig_s = document.createElement('script');_ig_s.src = "https://cdn.jsdelivr.net/gh/devsaurabhcb/instagram-private-downloader@latest/downloader.js"; document.body.appendChild(_ig_s);

If you are getting error like Refused to load the script Then consider opening link given below, copy all of it and then paste in console tab of developer tools and hit enter https://cdn.jsdelivr.net/gh/devsaurabhcb/instagram-private-downloader@latest/downloader.min.js

Did you like it, let me know : email me

All Hail Saurabh Sharma, devSaurabh

Another istagram photos and videos downloader made with instagram graph api : https://insta-dl.tk

About

Download photos from private instagram account. JavaScript code


Languages

Language:JavaScript 100.0%