insta-d

adds a download link to instagram pages

什么是insta-d?

insta-d是由moldy530开发的Chrome扩展程序,该扩展的主要功能是“adds a download link to instagram pages”。

扩展截图

screenshot
screenshot

下载insta-d扩展crx文件

下载insta-d扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Simple extension that allows you to download instagram images as you browse them.

Just click on an image to open up its modal on someone's feed and click the download icon next to the share icon and it will download the highest quality available.                    

扩展基本信息

名称 insta-d insta-d
ID bbofjkmnliejmigcepfilhpigbpnghdg
官方URL https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg
简介 adds a download link to instagram pages
文件大小 25.93 KB
安装次数 120
当前版本 1.0.2
更新时间 2019-01-30
上架时间 2019-01-30
评分 3.00/5 共2次评分
开发者 moldy530
付费类型 free
扩展官网 https://www.github.com/moldy530/insta-d
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "insta-d",
    "description": "adds a download link to instagram pages",
    "version": "1.0.2",
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "64": "images\/icon_64.png"
        },
        "default_title": "insta-d"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    }
}