Case Logs

An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).

Qu'est-ce que Case Logs ?

Case Logs est une extension Chrome développée par Efficiensee, et sa fonction principale est "An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Case Logs

Téléchargez les fichiers d'extension Case Logs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Case Logs Case Logs
ID nambgfiealgmgmanagmakkkohiclheae
URL Officiel https://chromewebstore.google.com/detail/case-logs/nambgfiealgmgmanagmakkkohiclheae
Description An extension for automatically logging medical cases with the Accreditation Council for Graduate Medical Education (ACGME).
Taille du Fichier 445 KB
Nombre d'Installations 65
Version Actuelle 1.1.15
Dernière Mise à Jour 2024-02-27
Date de Publication 2022-04-29
Évaluation 5.00/5 Total 3 Évaluations
Développeur Efficiensee
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://caselogs.typedream.app/
Langues Prises en Charge 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"
    ]
}