Butterfly Cloud Controls
Adds brightness, contrast, and speed controls to a Butterfly Study
Was ist Butterfly Cloud Controls?
Butterfly Cloud Controls ist eine Chrome-Erweiterung, die von https://www.ultrasoundoftheweek.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds brightness, contrast, and speed controls to a Butterfly Study".
Erweiterungsscreenshots
Butterfly Cloud Controls-Erweiterungs-CRX-Datei herunterladen
Laden Sie Butterfly Cloud Controls-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Butterfly Cloud Controls |
ID | dpnbflmefkeppipgpkaibljoolnhfppd |
Offizielle URL | https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd |
Beschreibung | Adds brightness, contrast, and speed controls to a Butterfly Study |
Dateigröße | 60.03 KB |
Installationsanzahl | 52 |
Aktuelle Version | 0.0.1.1 |
Letztes Update | 2019-09-24 |
Veröffentlichungsdatum | 2019-09-24 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://www.ultrasoundoftheweek.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |