Butterfly Cloud Downloader

Downloads an entire Butterfly Archive with one click

什么是Butterfly Cloud Downloader?

Butterfly Cloud Downloader是由https://www.ultrasoundoftheweek.com开发的Chrome扩展程序,该扩展的主要功能是“Downloads an entire Butterfly Archive with one click”。

扩展截图

screenshot

下载Butterfly Cloud Downloader扩展crx文件

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

扩展使用说明

                        Let's face it, downloading an entire archive on Butterfly Cloud is painful. This extension makes it a one click dream. To use: first navigate to an archive on the Butterfly Cloud, then click the Butterfly Cloud Downloader button. Boom, done.

Icon used for this extension is Butterfly by Hea Poh Lin from the Noun Project                    

扩展基本信息

名称 Butterfly Cloud Downloader Butterfly Cloud Downloader
ID bpgncphfhlodchilcolmadpagamijbmm
官方URL https://chromewebstore.google.com/detail/butterfly-cloud-downloade/bpgncphfhlodchilcolmadpagamijbmm
简介 Downloads an entire Butterfly Archive with one click
文件大小 18.72 KB
安装次数 61
当前版本 0.0.1.3
更新时间 2019-04-28
上架时间 2019-04-28
开发者 https://www.ultrasoundoftheweek.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Butterfly Cloud Downloader",
    "version": "0.0.1.3",
    "manifest_version": 2,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "description": "Downloads an entire Butterfly Archive with one click",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/cloud.butterflynetwork.com\/*\/archives\/*\/studies\/*\/images\/*"
            ],
            "js": [
                "verifyloaded.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "downloads"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}