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).”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Case Logs
ID nambgfiealgmgmanagmakkkohiclheae
官方網址 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"
    ]
}