Suki Assistant

Suki AI-powered clinical documentation app in your Chrome browser

Suki Assistantคืออะไร?

Suki Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Suki และคุณลักษณะหลักของมันคือ "Suki AI-powered clinical documentation app in your Chrome browser"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Suki Assistant

ดาวน์โหลดไฟล์ส่วนขยาย Suki Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Suki is an AI clinical assistant that lifts the administrative burden from clinicians so they can focus on what’s most important: their patients.  

Using generative AI and voice technologies, Suki helps clinicians save time on notes.
Ambient documentation.  Suki listens to patient-clinician conversations and automatically generates suggestions for notes.  Easily accept, reject, or edit suggestions before they are sent to the EHR.
Dictation.  Dictate additional details or make changes to note content.  
Commands.  Use voice commands to add scripts (macros) and make edits.

Suki’s Chrome Extension can be integrated with MEDITECH (integration with additional EHRs coming soon).  It can also be used as a standalone solution.  When Suki is integrated with the EHR, it provides an even more powerful experience.
Pull up-to-date information.  Suki can pull the latest details, like patient vitals, from the EHR and into the note.
Send notes back to the EHR.  Once notes are done, send them back to the EHR with a click.  
Dictate into any field the EHR.

Suki is HIPAA compliant and SOC2 Type 2 certified.

An active Suki account is required to use the Suki Chrome Extension.  The Suki Chrome Extension works in Google Chrome as well as Microsoft Edge.  For Edge users, Suki can be downloaded from the Chrome Web Store by allowing extensions from other stores in the Edge browser.  To learn more about Suki’s solutions, visit https://www.suki.ai                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Suki Assistant Suki Assistant
ID ckdjadjpndnpnghpingmnoonmejdidga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/suki-assistant/ckdjadjpndnpnghpingmnoonmejdidga
คำอธิบาย Suki AI-powered clinical documentation app in your Chrome browser
ขนาดไฟล์ 244 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2024-02-23
วันที่เผยแพร่ 2024-01-02
คะแนน 5.00/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา Suki
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.suki.ai/
URL หน้านโยบายความเป็นส่วนตัว https://www.suki.ai/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Suki Assistant",
    "version": "1.2.0",
    "description": "Suki AI-powered clinical documentation app in your Chrome browser",
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "icons": {
        "16": "sukiAgent.png",
        "48": "sukiAgent.png",
        "128": "sukiAgent.png"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_title": "Suki",
        "default_popup": "src\/pages\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/injector.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "src\/pages\/**\/*.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}