Klara Chrome Extension

Work in Klara and your EHR side by side

O que é Klara Chrome Extension?

Klara Chrome Extension é uma extensão do Chrome desenvolvida por Klara Technologies, e sua principal característica é "Work in Klara and your EHR side by side".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Klara Chrome Extension

Baixe arquivos de extensão Klara Chrome Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Klara Chrome Extension Klara Chrome Extension
ID gmbopcklfllknabgekhnjccldlfcpjbd
URL Oficial https://chromewebstore.google.com/detail/klara-chrome-extension/gmbopcklfllknabgekhnjccldlfcpjbd
Descrição Work in Klara and your EHR side by side
Tamanho do Arquivo 365 KB
Contagem de Instalações 11,632
Versão Atual 1.2.23
Última Atualização 2024-01-25
Data de Publicação 2020-05-28
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Klara Technologies
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://klara.com/
URL da Página de Ajuda http://support.klara.com/
URL da Página de Política de Privacidade https://www.klara.com/privacy
Idiomas Suportados 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"
    }
}