Social Media Content Downloader

An extension which lets you download images and videos including stories, highligts and reels from instagram

Τι είναι το Social Media Content Downloader;

Το Social Media Content Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Meet Panchal, και η κύρια λειτουργία του είναι "An extension which lets you download images and videos including stories, highligts and reels from instagram".

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

screenshot
screenshot
screenshot

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

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

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

                        This extension aims to provide a handy tool to download image and video content from Instagram. The target audience for this extension can be Designers, Blogger, Vlogger, Photographers basically all the creative profession in addition to Marketing people as now a days most of the marketing campaign are influenced by social media (memes to be specific)

This extension supports Instagram feed, stories, highlights, reel, explore, IGTV. One can save the content (like stories which is available for 24hr) also while downloading the content it captures meta data of that content.

It also shows the 'Total saved posts' along with the category wise count of saved posts with real time updation of the count and cover photo of the category

With so much to explore, there can be endless use-cases for which the end user can download this extension                    

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

Όνομα Social Media Content Downloader Social Media Content Downloader
ID iepkgmaifomdjkclioanijhicpgojada
Επίσημο URL https://chrome.google.com/webstore/detail/social-media-content-down/iepkgmaifomdjkclioanijhicpgojada
Περιγραφή An extension which lets you download images and videos including stories, highligts and reels from instagram
Μέγεθος Αρχείου 166 KB
Αριθμός Εγκαταστάσεων 319
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2021-08-09
Ημερομηνία Δημοσίευσης 2021-08-09
Προγραμματιστής Meet Panchal
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Media Content Downloader",
    "version": "2.0.0",
    "description": "An extension which lets you download images and videos including stories, highligts and reels from instagram",
    "permissions": [
        "webRequest",
        "tabs",
        "downloads",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "cookies",
        "webRequestBlocking"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Social Media Content Downloader"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery.js",
                "content-scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.gif"
    ],
    "manifest_version": 2
}