Butterfly Cloud Downloader

Downloads an entire Butterfly Archive with one click

Apa itu Butterfly Cloud Downloader?

Butterfly Cloud Downloader adalah ekstensi Chrome yang dikembangkan oleh https://www.ultrasoundoftheweek.com, dan fitur utamanya adalah "Downloads an entire Butterfly Archive with one click".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Butterfly Cloud Downloader

Unduh file ekstensi Butterfly Cloud Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Butterfly Cloud Downloader Butterfly Cloud Downloader
ID bpgncphfhlodchilcolmadpagamijbmm
URL Resmi https://chromewebstore.google.com/detail/butterfly-cloud-downloade/bpgncphfhlodchilcolmadpagamijbmm
Deskripsi Downloads an entire Butterfly Archive with one click
Ukuran File 18.72 KB
Jumlah Instalasi 61
Versi Saat Ini 0.0.1.3
Terakhir Diperbarui 2019-04-28
Tanggal Publikasi 2019-04-28
Pengembang https://www.ultrasoundoftheweek.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}