Klara Chrome Extension

Work in Klara and your EHR side by side

Klara Chrome Extension là gì?

Klara Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi Klara Technologies, và tính năng chính của nó là "Work in Klara and your EHR side by side".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Klara Chrome Extension

Tải xuống các tệp mở rộng Klara Chrome Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Klara Chrome Extension Klara Chrome Extension
ID gmbopcklfllknabgekhnjccldlfcpjbd
URL Chính Thức https://chromewebstore.google.com/detail/klara-chrome-extension/gmbopcklfllknabgekhnjccldlfcpjbd
Mô tả Work in Klara and your EHR side by side
Kích Thước Tệp 365 KB
Số Lần Cài Đặt 11,632
Phiên Bản Hiện Tại 1.2.23
Cập Nhật Lần Cuối 2024-01-25
Ngày Phát Hành 2020-05-28
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Klara Technologies
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://klara.com/
URL Trang Trợ Giúp http://support.klara.com/
URL Trang Chính Sách Bảo Mật https://www.klara.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}