Butterfly Cloud Controls

Adds brightness, contrast, and speed controls to a Butterfly Study

Τι είναι το Butterfly Cloud Controls;

Το Butterfly Cloud Controls είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.ultrasoundoftheweek.com, και η κύρια λειτουργία του είναι "Adds brightness, contrast, and speed controls to a Butterfly Study".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης Butterfly Cloud Controls

Λήψη αρχείων επέκτασης Butterfly Cloud Controls σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Simply adds PACS-like windowing, speed controls (1x, 0.5x, 0.25x, 0.1x), and a magnifier* to every Butterfly Cloud Study.

Keyboard shortcuts: 
W Window
M Magnify
↑ Speed Up
↓ Speed Down

Please note that this extension should be for education only, and should not be used for patient care.

Icon used is Contrast by Edward Boatman from the Noun Project.

*Special thanks to David Crockett @davycro for coding the magnifier.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Butterfly Cloud Controls Butterfly Cloud Controls
ID dpnbflmefkeppipgpkaibljoolnhfppd
Επίσημο URL https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd
Περιγραφή Adds brightness, contrast, and speed controls to a Butterfly Study
Μέγεθος Αρχείου 60.03 KB
Αριθμός Εγκαταστάσεων 52
Τρέχουσα Έκδοση 0.0.1.1
Τελευταία Ενημέρωση 2019-09-24
Ημερομηνία Δημοσίευσης 2019-09-24
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://www.ultrasoundoftheweek.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Butterfly Cloud Controls",
    "version": "0.0.1.1",
    "manifest_version": 2,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "description": "Adds brightness, contrast, and speed controls to a Butterfly Study",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/cloud.butterflynetwork.com\/*"
            ],
            "js": [
                "jquery-latest.min.js",
                "contentscript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}