Butterfly Cloud Controls
Adds brightness, contrast, and speed controls to a Butterfly Study
Wat is Butterfly Cloud Controls?
Butterfly Cloud Controls is een Chrome-extensie ontwikkeld door https://www.ultrasoundoftheweek.com, en de belangrijkste functie is "Adds brightness, contrast, and speed controls to a Butterfly Study".
Extensie Screenshots
Download het CRX-bestand van de extensie Butterfly Cloud Controls
Download Butterfly Cloud Controls-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Butterfly Cloud Controls |
ID | dpnbflmefkeppipgpkaibljoolnhfppd |
Officiële URL | https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd |
Beschrijving | Adds brightness, contrast, and speed controls to a Butterfly Study |
Bestandsgrootte | 60.03 KB |
Aantal Installaties | 52 |
Huidige Versie | 0.0.1.1 |
Laatst Bijgewerkt | 2019-09-24 |
Publicatiedatum | 2019-09-24 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://www.ultrasoundoftheweek.com |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |