Butterfly Cloud Controls

Adds brightness, contrast, and speed controls to a Butterfly Study

Butterfly Cloud Controls là gì?

Butterfly Cloud Controls là một tiện ích mở rộng Chrome được phát triển bởi https://www.ultrasoundoftheweek.com, và tính năng chính của nó là "Adds brightness, contrast, and speed controls to a Butterfly Study".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Butterfly Cloud Controls

Tải xuống các tệp mở rộng Butterfly Cloud Controls dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Butterfly Cloud Controls Butterfly Cloud Controls
ID dpnbflmefkeppipgpkaibljoolnhfppd
URL Chính Thức https://chromewebstore.google.com/detail/butterfly-cloud-controls/dpnbflmefkeppipgpkaibljoolnhfppd
Mô tả Adds brightness, contrast, and speed controls to a Butterfly Study
Kích Thước Tệp 60.03 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 0.0.1.1
Cập Nhật Lần Cuối 2019-09-24
Ngày Phát Hành 2019-09-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.ultrasoundoftheweek.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}