IG Downloader

Downloads videos and images from ig

Qu'est-ce que IG Downloader ?

IG Downloader est une extension Chrome développée par matthewlam.js, et sa fonction principale est "Downloads videos and images from ig".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension IG Downloader

Téléchargez les fichiers d'extension IG Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom IG Downloader IG Downloader
ID gelbcoobaindiodaajafdoibjohgnnda
URL Officiel https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda
Description Downloads videos and images from ig
Taille du Fichier 10.96 KB
Nombre d'Installations 2,000
Version Actuelle 1.1.3
Dernière Mise à Jour 2019-07-20
Date de Publication 2019-07-20
Évaluation 3.00/5 Total 6 Évaluations
Développeur matthewlam.js
Type de Paiement free
Site Web de l'Extension http://www.github.com/matthewlamdotjs
Langues Prises en Charge 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"
        }
    ]
}