Butterfly Cloud Controls

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

Co to jest Butterfly Cloud Controls?

Butterfly Cloud Controls to rozszerzenie Chrome opracowane przez https://www.ultrasoundoftheweek.com, a jego główną funkcją jest „Adds brightness, contrast, and speed controls to a Butterfly Study”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Butterfly Cloud Controls

Pobierz pliki rozszerzeń Butterfly Cloud Controls w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Butterfly Cloud Controls Butterfly Cloud Controls
ID dpnbflmefkeppipgpkaibljoolnhfppd
Oficjalny URL https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd
Opis Adds brightness, contrast, and speed controls to a Butterfly Study
Rozmiar pliku 60.03 KB
Liczba instalacji 52
Aktualna Wersja 0.0.1.1
Ostatnia Aktualizacja 2019-09-24
Data Publikacji 2019-09-24
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://www.ultrasoundoftheweek.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}