Butterfly Cloud Controls

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

Qu'est-ce que Butterfly Cloud Controls ?

Butterfly Cloud Controls est une extension Chrome développée par https://www.ultrasoundoftheweek.com, et sa fonction principale est "Adds brightness, contrast, and speed controls to a Butterfly Study".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Butterfly Cloud Controls

Téléchargez les fichiers d'extension Butterfly Cloud Controls au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Butterfly Cloud Controls Butterfly Cloud Controls
ID dpnbflmefkeppipgpkaibljoolnhfppd
URL Officiel https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd
Description Adds brightness, contrast, and speed controls to a Butterfly Study
Taille du Fichier 60.03 KB
Nombre d'Installations 52
Version Actuelle 0.0.1.1
Dernière Mise à Jour 2019-09-24
Date de Publication 2019-09-24
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://www.ultrasoundoftheweek.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}