Ocean-MA Extension

Allows Med Access users to send chart files directly to Ocean without requiring a download and upload from the user's machine.

Ocean-MA Extension क्या है?

Ocean-MA Extension Marc Carvalho Consulting द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows Med Access users to send chart files directly to Ocean without requiring a download and upload from the user's machine."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ocean-MA Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Allows Med Access users to send chart files directly to Ocean without requiring a download and upload from the user's machine.

Streamlines the export of attachments from a patient's chart without needing to download files to the local drive, reducing the risk of patient health information (PHI) unintentionally remaining on a workstation in order to be included in Referrals and Consults.

Please Note: The extension can be used in other areas of the patient's chart, including but not limited to investigation attachments, investigation reports, lab attachments, and lab reports. There is no time-based expiry on files. The attachment queue is automatically cleared.

Additionally, the extension supports converting Ocean-generated Tasks from the Category of 'Attachment' to 'Consult'.

For more information, please visit the Ocean-MA Extension FAQ at: ocean.tips/ma-extension                    

एक्सटेंशन की मूल जानकारी

नाम Ocean-MA Extension Ocean-MA Extension
ID aichamkheebjfplcjfkhmpejbciegcco
आधिकारिक URL https://chromewebstore.google.com/detail/ocean-ma-extension/aichamkheebjfplcjfkhmpejbciegcco
विवरण Allows Med Access users to send chart files directly to Ocean without requiring a download and upload from the user's machine.
फ़ाइल का आकार 81.56 KB
स्थापना संख्या 1,276
वर्तमान संस्करण 1.0.19
अंतिम अपडेट 2024-02-16
प्रकाशन तिथि 2023-06-23
डेवलपर Marc Carvalho Consulting
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ocean-MA Extension",
    "version": "1.0.19",
    "description": "Allows Med Access users to send chart files directly to Ocean without requiring a download and upload from the user's machine.",
    "manifest_version": 3,
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "ocean-page-shared.js"
            ],
            "matches": [
                "https:\/\/ocean.cognisantmd.com\/*",
                "https:\/\/staging.cognisantmd.com\/*",
                "https:\/\/test.cognisantmd.com\/*"
            ],
            "world": "MAIN"
        },
        {
            "js": [
                "ocean-page-extension.js"
            ],
            "matches": [
                "https:\/\/ocean.cognisantmd.com\/*",
                "https:\/\/staging.cognisantmd.com\/*",
                "https:\/\/test.cognisantmd.com\/*"
            ],
            "world": "ISOLATED"
        },
        {
            "js": [
                "attachment-viewer.js"
            ],
            "matches": [
                "https:\/\/*.med-access.net\/*"
            ],
            "world": "ISOLATED",
            "all_frames": true
        },
        {
            "js": [
                "ma-task-handler.js"
            ],
            "matches": [
                "https:\/\/*.med-access.net\/task\/DisplayPatientTaskByObservationView.do*",
                "https:\/\/*.med-access.net\/task\/DisplayPatientTask.do*"
            ],
            "world": "ISOLATED",
            "all_frames": true
        },
        {
            "js": [
                "telus-launcher.js"
            ],
            "matches": [
                "https:\/\/*.telusemrmobile.com\/*"
            ],
            "world": "ISOLATED",
            "all_frames": true
        }
    ],
    "permissions": [
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.med-access.net\/",
        "https:\/\/ocean.cognisantmd.com\/",
        "https:\/\/staging.cognisantmd.com\/",
        "https:\/\/test.cognisantmd.com\/"
    ],
    "icons": {
        "128": "icons\/Attachment128.png"
    }
}