IG Downloader

Downloads videos and images from ig

Τι είναι το IG Downloader;

Το IG Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον matthewlam.js, και η κύρια λειτουργία του είναι "Downloads videos and images from ig".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης IG Downloader

Λήψη αρχείων επέκτασης IG Downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα IG Downloader IG Downloader
ID gelbcoobaindiodaajafdoibjohgnnda
Επίσημο URL https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda
Περιγραφή Downloads videos and images from ig
Μέγεθος Αρχείου 10.96 KB
Αριθμός Εγκαταστάσεων 2,000
Τρέχουσα Έκδοση 1.1.3
Τελευταία Ενημέρωση 2019-07-20
Ημερομηνία Δημοσίευσης 2019-07-20
Αξιολόγηση 3.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής matthewlam.js
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.github.com/matthewlamdotjs
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}