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).".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Case Logs

قم بتنزيل ملفات الامتداد Case Logs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
    ]
}