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