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
Eメール [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"
    }
}