Butterfly Cloud Controls

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

Butterfly Cloud Controlsとは何ですか?

Butterfly Cloud Controlsはhttps://www.ultrasoundoftheweek.comによって開発されたChromeの拡張機能で、その主な機能は「Adds brightness, contrast, and speed controls to a Butterfly Study」です。

拡張機能のスクリーンショット

Butterfly Cloud Controls拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
    ]
}