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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    }
}