IG Downloader

Downloads videos and images from ig

What is IG Downloader?

IG Downloader is a Chrome extension developed by matthewlam.js, and its main feature is "Downloads videos and images from ig".

Extension Screenshots

screenshot
screenshot
screenshot

Download IG Downloader Extension CRX File

Download IG 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

                        After installing the extension, navigate to IG's website in a new tab and log in. From there you have the following options:

Download regular IG posts images/videos: 
-click on a link to a post anywhere IG to open it.
-a confirm dialog should pop up asking if you want to download the files.

Download IG stories: 
-click on a story to open it in the story viewer.
-click start download button on top left of page and stories should start downloading as they are played.
-click stop download button on top left of page to stop downloading.                    

Extension Basic Information

Name IG Downloader IG Downloader
ID gelbcoobaindiodaajafdoibjohgnnda
Official URL https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda
Description Downloads videos and images from ig
File Size 10.96 KB
Installation Count 2,000
Current Version 1.1.3
Last Updated 2019-07-20
Publish Date 2019-07-20
Rating 3.00/5 Total 6 Ratings
Developer matthewlam.js
Payment Type free
Extension Website http://www.github.com/matthewlamdotjs
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IG Downloader",
    "description": "Downloads videos and images from ig",
    "version": "1.1.3",
    "author": "Matthew Lam",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "posts.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "stories.js"
            ],
            "run_at": "document_end"
        }
    ]
}