Butterfly Cloud Controls
Adds brightness, contrast, and speed controls to a Butterfly Study
Hvad er Butterfly Cloud Controls?
Butterfly Cloud Controls er en Chrome-udvidelse udviklet af https://www.ultrasoundoftheweek.com, og dens hovedfunktion er "Adds brightness, contrast, and speed controls to a Butterfly Study".
Udvidelsesskærmbilleder
Download Butterfly Cloud Controls-udvidelses-CRX-fil
Download Butterfly Cloud Controls-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Butterfly Cloud Controls |
ID | dpnbflmefkeppipgpkaibljoolnhfppd |
Officiel URL | https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd |
Beskrivelse | Adds brightness, contrast, and speed controls to a Butterfly Study |
Filstørrelse | 60.03 KB |
Antal Installationer | 52 |
Nuværende Version | 0.0.1.1 |
Senest Opdateret | 2019-09-24 |
Udgivelsesdato | 2019-09-24 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | https://www.ultrasoundoftheweek.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |