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
公式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
Eメール [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"
    ]
}