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
官方網址 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"
    ]
}