Case Logs
An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).
What is Case Logs?
Case Logs is a Chrome extension developed by Efficiensee, and its main feature is "An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).".
Extension Screenshots
Download Case Logs Extension CRX File
Download Case Logs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Case Logs |
ID | nambgfiealgmgmanagmakkkohiclheae |
Official URL | https://chromewebstore.google.com/detail/case-logs/nambgfiealgmgmanagmakkkohiclheae |
Description | An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME). |
File Size | 445 KB |
Installation Count | 65 |
Current Version | 1.1.15 |
Last Updated | 2024-02-27 |
Publish Date | 2022-04-29 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Efficiensee |
[email protected] | |
Payment Type | free |
Extension Website | https://caselogs.typedream.app/ |
Supported Languages | 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" ] } |