Instagram Downloader

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

什麼是Instagram Downloader?

Instagram Downloader是由cjkumaresh開發的Chrome擴展程式,該擴展的主要功能是“Download images/videos from instagram. No ads. Enjoy :)”。

擴展截圖

screenshot

下載Instagram Downloader擴展crx文件

下載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
官方網址 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"
    }
}