Klara Chrome Extension

Work in Klara and your EHR side by side

什么是Klara Chrome Extension?

Klara Chrome Extension是由Klara Technologies开发的Chrome扩展程序,该扩展的主要功能是“Work in Klara and your EHR side by side”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Klara Chrome Extension扩展crx文件

下载Klara Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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/
帮助页面URL http://support.klara.com/
隐私政策页面URL 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"
    }
}