IG Downloader

Downloads videos and images from ig

什麼是IG Downloader?

IG Downloader是由matthewlam.js開發的Chrome擴展程式,該擴展的主要功能是“Downloads videos and images from ig”。

擴展截圖

screenshot
screenshot
screenshot

下載IG Downloader擴展crx文件

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

擴展使用說明

                        After installing the extension, navigate to IG's website in a new tab and log in. From there you have the following options:

Download regular IG posts images/videos: 
-click on a link to a post anywhere IG to open it.
-a confirm dialog should pop up asking if you want to download the files.

Download IG stories: 
-click on a story to open it in the story viewer.
-click start download button on top left of page and stories should start downloading as they are played.
-click stop download button on top left of page to stop downloading.                    

擴展基本資訊

名稱 IG Downloader IG Downloader
ID gelbcoobaindiodaajafdoibjohgnnda
官方網址 https://chrome.google.com/webstore/detail/ig-downloader/gelbcoobaindiodaajafdoibjohgnnda
簡介 Downloads videos and images from ig
檔案大小 10.96 KB
安裝次數 2,000
目前版本 1.1.3
更新時間 2019-07-20
上架時間 2019-07-20
評分 3.00/5 共 6 次評分
開發者 matthewlam.js
付費類型 free
擴展官網 http://www.github.com/matthewlamdotjs
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IG Downloader",
    "description": "Downloads videos and images from ig",
    "version": "1.1.3",
    "author": "Matthew Lam",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "posts.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "stories.js"
            ],
            "run_at": "document_end"
        }
    ]
}