Butterfly Cloud Controls
Adds brightness, contrast, and speed controls to a Butterfly Study
Cos'è Butterfly Cloud Controls?
Butterfly Cloud Controls è un'estensione di Chrome sviluppata da https://www.ultrasoundoftheweek.com, e la sua funzione principale è "Adds brightness, contrast, and speed controls to a Butterfly Study".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Butterfly Cloud Controls
Scarica i file di estensione Butterfly Cloud Controls in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Butterfly Cloud Controls |
ID | dpnbflmefkeppipgpkaibljoolnhfppd |
URL Ufficiale | https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd |
Descrizione | Adds brightness, contrast, and speed controls to a Butterfly Study |
Dimensione del File | 60.03 KB |
Conteggio Installazioni | 52 |
Versione Corrente | 0.0.1.1 |
Ultimo Aggiornamento | 2019-09-24 |
Data di Pubblicazione | 2019-09-24 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://www.ultrasoundoftheweek.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |