Case Logs
An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).
Case Logsคืออะไร?
Case Logs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Efficiensee และคุณลักษณะหลักของมันคือ "An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Case Logs
ดาวน์โหลดไฟล์ส่วนขยาย Case Logs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Case Logs |
ID | nambgfiealgmgmanagmakkkohiclheae |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/case-logs/nambgfiealgmgmanagmakkkohiclheae |
คำอธิบาย | An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME). |
ขนาดไฟล์ | 445 KB |
จำนวนการติดตั้ง | 65 |
เวอร์ชันปัจจุบัน | 1.1.15 |
อัปเดตครั้งล่าสุด | 2024-02-27 |
วันที่เผยแพร่ | 2022-04-29 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Efficiensee |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://caselogs.typedream.app/ |
ภาษาที่รองรับ | 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" ] } |