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
官方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
    }
}