Instagram Private Video Downloader

Download both private and public videos on instagram.

What is Instagram Private Video Downloader?

Instagram Private Video Downloader is a Chrome extension developed by lmutter140, and its main feature is "Download both private and public videos on instagram.".

Extension Screenshots

screenshot

Download Instagram Private Video Downloader Extension CRX File

Download Instagram Private Video Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Video Download helper for Chrome.

Github: https://github.com/lmutter/igpd

Allows user to directly access the link of video displayed on private instagram pages. Currently this is done by displaying a box under the extension icon containing the direct link to the video.

To use, open the instagram video, refresh the page, and click on the extension box. Copy the entire text within the new box and paste this in your address bar OR right click on highlighted text and click "Go to https//scontent...". Note: You must refresh the page to generate a new link on every video.

There are only a few "video download" extensions on the chrome web store, and I could not find any specifically for Instagram that were open source. I am new to writing extensions and this is a basic proof of concept. Current goals are to (eventually) add a button to the extension to allow for immediate download, and to not require the user to refresh after clicking off of a video and onto another one. Also, the icon will show as "active" (not black and white) for a lot of web pages but not all. It should only show as active on instagram.com.

Despite that, it is a basic extension and does not require visiting any 3rd party site, as is usually the case.

Credit to Rob W at stackoverflow (http://stackoverflow.com/users/938089/rob-w) for the DOMtoString function.                    

Extension Basic Information

Name Instagram Private Video Downloader Instagram Private Video Downloader
ID cjekgdjobneckkkcngpmljkkohigmhkn
Official URL https://chrome.google.com/webstore/detail/instagram-private-video-d/cjekgdjobneckkkcngpmljkkohigmhkn
Description Download both private and public videos on instagram.
File Size 20.2 KB
Installation Count 992
Current Version 1.10
Last Updated 2020-06-09
Publish Date 2020-06-09
Rating 5.00/5 Total 2 Ratings
Developer lmutter140
Payment Type free
Help Page URL https://github.com/lmutter/igpd
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instagram Private Video Downloader",
    "version": "1.10",
    "manifest_version": 2,
    "description": "Download both private and public videos on instagram.",
    "browser_action": {
        "default_icon": "images\/igpd128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/instagram.com\/*"
    ],
    "icons": {
        "16": "images\/igpd16.png",
        "32": "images\/igpd32.png",
        "48": "images\/igpd48.png",
        "128": "images\/igpd128.png"
    }
}