Klara Chrome Extension

Work in Klara and your EHR side by side

ما هو Klara Chrome Extension؟

Klara Chrome Extension هو إضافة Chrome تم تطويرها بواسطة Klara Technologies، والميزة الرئيسية لها هي "Work in Klara and your EHR side by side".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Klara Chrome Extension

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

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

                        Klara’s EHR extension for Google Chrome™️ allows you to work in Klara and the EHR system side by side. You can view the patient’s chart in the EHR while messaging or holding a video visit with the patient in Klara—all in one window. 

Kara customers who use Practice Fusion or EMA from Modernizing Medicine can also use the extension to quickly find and pull up the corresponding patient’s information in Klara. They can also add any patients from the EHR into Klara with the click of the button.

Klara customers can find more information about this extension on our Help Center: http://support.klara.com/klara-help-center-for-staff/ehr-chrome-extension

More about Klara: Klara enables medical practices to grow by providing patients with the convenient experience they demand while making their operations more efficient. Thousands of healthcare teams across more than 40 specialties connect with and care for their patients using Klara’s secure messaging and telemedicine solution because it’s convenient and accessible to patients with no login, password, or download required—ever. Klara enables medical teams to optimize practice workflows by eliminating phone calls, automating routine outreach, and making it easy to collaborate on patient requests. Klara is the only platform that enables healthcare teams to digitize their practice operations while providing patients with a quality experience that will guarantee their loyalty.                    

معلومات أساسية عن التمديد

الاسم Klara Chrome Extension Klara Chrome Extension
ID gmbopcklfllknabgekhnjccldlfcpjbd
عنوان URL الرسمي https://chromewebstore.google.com/detail/klara-chrome-extension/gmbopcklfllknabgekhnjccldlfcpjbd
الوصف Work in Klara and your EHR side by side
حجم الملف 365 KB
عدد التثبيتات 11,632
النسخة الحالية 1.2.23
آخر تحديث 2024-01-25
تاريخ النشر 2020-05-28
تقييم 5.00/5 مجموع تقييمات 3
المطور Klara Technologies
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://klara.com/
عنوان صفحة المساعدة http://support.klara.com/
عنوان صفحة سياسة الخصوصية https://www.klara.com/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Klara Chrome Extension",
    "description": "Work in Klara and your EHR side by side",
    "author": "Klara Technologies, Inc.",
    "version": "1.2.23",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "axios.js",
            "config.js",
            "api.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.klara.com\/*"
            ],
            "js": [
                "config.js",
                "injectSidebarMenu.js"
            ],
            "css": [
                "sidebar\/sidebarMenu.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/static.practicefusion.com\/*"
            ],
            "js": [
                "siteConfigs\/PracticeFusion.js",
                "moment.js",
                "config.js",
                "scraper.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*\/ema\/*"
            ],
            "js": [
                "siteConfigs\/ema.js",
                "moment.js",
                "config.js",
                "scraper.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/doctor.klara.com\/*"
            ],
            "js": [
                "detectKlaraURLChanges.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.pendo.io https:\/\/data.pendo.io; object-src 'self'",
    "web_accessible_resources": [
        "fonts\/*",
        "images\/*",
        "sidebar\/*"
    ],
    "icons": {
        "128": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Klara"
    }
}