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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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"
    }
}