Case Logs
An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).
Cos'è Case Logs?
Case Logs è un'estensione di Chrome sviluppata da Efficiensee, e la sua funzione principale è "An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Case Logs
Scarica i file di estensione Case Logs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Case Logs |
ID | nambgfiealgmgmanagmakkkohiclheae |
URL Ufficiale | https://chromewebstore.google.com/detail/case-logs/nambgfiealgmgmanagmakkkohiclheae |
Descrizione | An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME). |
Dimensione del File | 445 KB |
Conteggio Installazioni | 65 |
Versione Corrente | 1.1.15 |
Ultimo Aggiornamento | 2024-02-27 |
Data di Pubblicazione | 2022-04-29 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Efficiensee |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://caselogs.typedream.app/ |
Lingue Supportate | 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" ] } |