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