AI 产品解读A healthcare admin side-panel toolkit that embeds the Kyruus Health (Epion Health) patient check-in workflow directly inside the athenahealth EHR interface, enabling clinical staff to manage patient intake without switching tabs.
Healthcare staff traditionally need to toggle between the athenahealth EHR and the Kyruus Health check-in system to manage patient forms, documents, and payment requests. This extension eliminates that context-switching by embedding the toolkit in a side panel within athenahealth.
1) Staff logs into athenahealth EHR in their browser. 2) When on an athenahealth page, the extension activates a side panel. 3) The side panel loads the Kyruus Health toolkit iframe from check-in.epionhealth.com, automatically passing the practice EHR ID from the URL. 4) The content script extracts patient ID, appointment ID, and department ID from the athenahealth DOM and forwards them to the side panel. 5) Staff use the toolkit within the side panel to send pre-visit forms, documents, payment requests, and text messages to patients. 6) The extension monitors for pending items and displays a badge count.
Embeds Kyruus Health check-in toolkit as a side panel inside athenahealth EHR pagesSends pre-visit forms and information to patientsSends payment requests to patients during check-inSends clinical, administrative, and encounter documents on-the-flySends personalized text messages to patientsExtracts patient/appointment/department data from athenahealth DOM to populate the toolkit
- 目标用户
- Healthcare clinic staff and front-desk administrators / Medical office receptionists / Clinical staff managing patient check-in workflows / Healthcare organizations using athenahealth EHR with Kyruus Health
- Cannot verify the content loaded inside the Epion Health iframe (check-in.epionhealth.com) as it is a remote web application — any login or paid features within that iframe are not visible from extension source code alone
- The extension has only 12 files and minimal custom code; most logic is in the third-party Datadog logging library
- The options page allows setting a custom staging URL, but this is for development/testing, not a user-facing feature
付费分析未识别到付费功能
The extension source code contains no billing logic, subscription checks, premium feature gating, Stripe/payment processor integration, or upgrade prompts. The 'payment' keyword matches (content.js lines 151-152, sidepanel.js lines 132-134) refer to the healthcare workflow feature of sending patient payment requests as part of the check-in process, not to paid extension features. The 'subscribe' hit is in the third-party Datadog logging SDK and is unrelated. Kyruus Health is likely a paid B2B enterprise service for healthcare practices, but the extension code itself does not gate any functionality behind a paywall.
- 置信度
- 80
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension operates as a bridge between two authenticated services: (1) athenahealth EHR — the content script reads patient/appointment data from athenahealth DOM elements that only render when the user is logged in (content.js line 23: 'The status frame is hidden or doesn\'t rendered if user is not logged in'); (2) Epion/Kyruus Health backend — the side panel loads an iframe to check-in.epionhealth.com and fetches data from /insurance_extension/previsits.json, which returns HTTP 401 when unauthorized (sidepanel.js lines 62-64: 'if (!res.ok && res.status === 401) { setBadgeCount("?"); }'). The extension itself has no login UI; it relies entirely on pre-existing authenticated sessions on both destination services.