Case Logs
An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).
Case Logs là gì?
Case Logs là một tiện ích mở rộng Chrome được phát triển bởi Efficiensee, và tính năng chính của nó là "An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).".
Ả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 Case Logs
Tải xuống các tệp mở rộng Case Logs 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
Case Logs is an extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME). Directions: 1. Download your cases from your EMR. 2. Log into the ACGME case log website 3. Verify the records if you'd like 4. Press submit and all records will be auto-uploaded! Case Logs is currently available for surgical residents. Please email [email protected] if you are interested in trying the app at your institution!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Case Logs |
ID | nambgfiealgmgmanagmakkkohiclheae |
URL Chính Thức | https://chromewebstore.google.com/detail/case-logs/nambgfiealgmgmanagmakkkohiclheae |
Mô tả | An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME). |
Kích Thước Tệp | 445 KB |
Số Lần Cài Đặt | 65 |
Phiên Bản Hiện Tại | 1.1.15 |
Cập Nhật Lần Cuối | 2024-02-27 |
Ngày Phát Hành | 2022-04-29 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Efficiensee |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://caselogs.typedream.app/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).", "version": "1.1.15", "manifest_version": 3, "name": "Case Logs", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/apps.acgme.org\/ads\/CaseLogs\/CaseEntry\/Insert" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "matches": [] } ], "host_permissions": [ "*:\/\/*.acgme.org\/*" ], "permissions": [ "storage", "webRequest", "tabs" ] } |