Instagram Downloader

Download media from Instagram

Instagram Downloader क्या है?

Instagram Downloader samagragupta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download media from Instagram"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Instagram Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Download any image or Video from Instagram. Just one click to go ahead !!!                    

एक्सटेंशन की मूल जानकारी

नाम Instagram Downloader Instagram Downloader
ID ciodnolkjfhjhpcdaehfoilnbinkhbca
आधिकारिक URL https://chrome.google.com/webstore/detail/instagram-downloader/ciodnolkjfhjhpcdaehfoilnbinkhbca
विवरण Download media from Instagram
फ़ाइल का आकार 31.01 KB
स्थापना संख्या 9,000
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-10-06
प्रकाशन तिथि 2020-10-06
रेटिंग 2.60/5 कुल 5 रेटिंग्स
डेवलपर samagragupta
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "Instagram Downloader",
    "description": "Download media from Instagram",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": {
            "19": "icons\/insta.jpg",
            "38": "icons\/insta.jpg"
        }
    },
    "icons": {
        "16": "icons\/insta.jpg",
        "48": "icons\/insta.jpg",
        "128": "icons\/insta.jpg"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "downloads",
        "storage",
        "http:\/\/www.instagram.com\/*",
        "https:\/\/www.instagram.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}