Instagram Downloader

Download media from Instagram

什麼是Instagram Downloader?

Instagram Downloader是由samagragupta開發的Chrome擴展程式,該擴展的主要功能是“Download media from Instagram”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Instagram Downloader擴展crx文件

下載Instagram Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Instagram Downloader Instagram Downloader
ID ciodnolkjfhjhpcdaehfoilnbinkhbca
官方網址 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
    }
}