Instagram Downloader

Download images/videos from instagram. No ads. Enjoy :)

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

Το Instagram Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cjkumaresh, και η κύρια λειτουργία του είναι "Download images/videos from instagram. No ads. Enjoy :)".

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

screenshot

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

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

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

                        This extension will allow the users to download high resolution images and videos from instagram

Features:
1. Download specific image in a profile (e.g: https://www.instagram.com/p/BHCPdEcgpVr/) or (e.g: https://www.instagram.com/p/BHCPdEcgpVr/?taken-by=samanthaprabhuofficial)
2. Download all images from a profile (e.g: https://www.instagram.com/shrutzhaasan/)
3. Download all images in home page (e.g: https://www.instagram.com)
4. Download specific video in a profile (e.g: https://www.instagram.com/p/BHW-JtggF9X/) or (e.g: https://www.instagram.com/p/BHW-JtggF9X/?taken-by=marloeshorst)
5. Download all videos from home page (e.g: https://www.instagram.com)

Note:
Downloading all videos for a profile is not implemented yet

If you like this plugin. Please star this project on Github
https://github.com/cjkumaresh/instagram-downloader-chrome                    

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

Όνομα Instagram Downloader Instagram Downloader
ID jhbapkbempcealhabaeicidlgbmhafmk
Επίσημο URL https://chromewebstore.google.com/detail/instagram-downloader/jhbapkbempcealhabaeicidlgbmhafmk
Περιγραφή Download images/videos from instagram. No ads. Enjoy :)
Μέγεθος Αρχείου 88.3 KB
Αριθμός Εγκαταστάσεων 1,314
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2023-12-20
Ημερομηνία Δημοσίευσης 2023-12-20
Αξιολόγηση 3.92/5 Συνολικά 36 Αξιολογήσεις
Προγραμματιστής cjkumaresh
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/cjkumaresh/instagram-downloader-chrome
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instagram Downloader",
    "description": "Download images\/videos from instagram. No ads. Enjoy :)",
    "version": "1.0.2",
    "short_name": "Instagram Download",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}