Butterfly Cloud Downloader

Downloads an entire Butterfly Archive with one click

Was ist Butterfly Cloud Downloader?

Butterfly Cloud Downloader ist eine Chrome-Erweiterung, die von https://www.ultrasoundoftheweek.com entwickelt wurde, und ihr Hauptmerkmal ist "Downloads an entire Butterfly Archive with one click".

Erweiterungsscreenshots

screenshot

Butterfly Cloud Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Butterfly Cloud Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Butterfly Cloud Downloader Butterfly Cloud Downloader
ID bpgncphfhlodchilcolmadpagamijbmm
Offizielle URL https://chromewebstore.google.com/detail/butterfly-cloud-downloade/bpgncphfhlodchilcolmadpagamijbmm
Beschreibung Downloads an entire Butterfly Archive with one click
Dateigröße 18.72 KB
Installationsanzahl 61
Aktuelle Version 0.0.1.3
Letztes Update 2019-04-28
Veröffentlichungsdatum 2019-04-28
Entwickler https://www.ultrasoundoftheweek.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}