Butterfly Cloud Controls
Adds brightness, contrast, and speed controls to a Butterfly Study
Что такое Butterfly Cloud Controls?
Butterfly Cloud Controls - это расширение Chrome, разработанное https://www.ultrasoundoftheweek.com, и его основная функция - "Adds brightness, contrast, and speed controls to a Butterfly Study".
Снимки экрана расширения
Скачать файл CRX расширения Butterfly Cloud Controls
Скачайте файлы расширений Butterfly Cloud Controls в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Butterfly Cloud Controls |
ID | dpnbflmefkeppipgpkaibljoolnhfppd |
Официальный URL | https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd |
Описание | Adds brightness, contrast, and speed controls to a Butterfly Study |
Размер файла | 60.03 KB |
Количество установок | 52 |
Текущая Версия | 0.0.1.1 |
Последнее Обновление | 2019-09-24 |
Дата публикации | 2019-09-24 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | https://www.ultrasoundoftheweek.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |