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
电子邮箱 [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"
    ]
}