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
官方URL 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"
        }
    ]
}