Case Logs
An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).
什么是Case Logs?
Case Logs是由Efficiensee开发的Chrome扩展程序,该扩展的主要功能是“An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).”。
扩展截图
下载Case Logs扩展crx文件
下载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" ] } |