Skip to content

Bubby4j/InstagramBookmarklet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

InstagramBookmarklet

A bookmarklet for downloading photos off the Instagram website (PC only)

Usage

Run the bookmarklet and then CTRL + CLICK any image on someone's instagram profile to download it at full resolution.

Bookmarklet

Add this to your bookmark bar

javascript:var imgs=$('.pgmiImageLink');for(i=0;i<imgs.length;i++){var url=imgs.find('.iImage')[i].style.backgroundImage.replace("url(","").replace(")","");$(imgs[i]).attr('href',url);$(imgs[i]).attr('download',i+'.jpg');}

Source

var imgs = $('.pgmiImageLink');
for(i = 0; i < imgs.length; i++)
{
    var url = imgs.find('.iImage')[i].style.backgroundImage.replace("url(", "").replace(")","");
    $(imgs[i]).attr('href', url);
    $(imgs[i]).attr('download', i + '.jpg');
}

About

A bookmarklet for downloading photos off the Instagram website (PC only)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors