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" ] } |