Butterfly Cloud Controls

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

What is Butterfly Cloud Controls?

Butterfly Cloud Controls is a Chrome extension developed by https://www.ultrasoundoftheweek.com, and its main feature is "Adds brightness, contrast, and speed controls to a Butterfly Study".

Extension Screenshots

Download Butterfly Cloud Controls Extension CRX File

Download Butterfly Cloud Controls extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Butterfly Cloud Controls Butterfly Cloud Controls
ID dpnbflmefkeppipgpkaibljoolnhfppd
Official URL https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd
Description Adds brightness, contrast, and speed controls to a Butterfly Study
File Size 60.03 KB
Installation Count 52
Current Version 0.0.1.1
Last Updated 2019-09-24
Publish Date 2019-09-24
Rating 5.00/5 Total 2 Ratings
Developer https://www.ultrasoundoftheweek.com
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}