Butterfly Cloud Downloader

Downloads an entire Butterfly Archive with one click

ما هو Butterfly Cloud Downloader؟

Butterfly Cloud Downloader هو إضافة Chrome تم تطويرها بواسطة https://www.ultrasoundoftheweek.com، والميزة الرئيسية لها هي "Downloads an entire Butterfly Archive with one click".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Butterfly Cloud Downloader

قم بتنزيل ملفات الامتداد Butterfly Cloud Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}