Quick Claim

File online medical claims faster and smarter.

Quick Claim क्या है?

Quick Claim doubleutf26 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "File online medical claims faster and smarter."।

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

screenshot
screenshot

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

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

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

                        Filing electronic medical claims on sites such as Office Ally and Optum(UHC) requires tedious and repetitive data entry. Quick Claim is a
Chrome extension meant to save time and prevent errors by remembering
your CPT details and automatically filling out the dense
portion of the form (Field 24 of CMS 1500). Quick Claim is
ideal when entering same procedure details for different dates. Most likely, the only data that differs are dates of service and diagnoses. 

**Only supports Office Ally and Optum(United Health Care) at the moment**                    

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

नाम Quick Claim Quick Claim
ID hlmoiemagjdmhpcjeolbcehhildojkki
आधिकारिक URL https://chromewebstore.google.com/detail/quick-claim/hlmoiemagjdmhpcjeolbcehhildojkki
विवरण File online medical claims faster and smarter.
फ़ाइल का आकार 142 KB
स्थापना संख्या 24
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2020-11-20
प्रकाशन तिथि 2020-01-15
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर doubleutf26
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Claim",
    "version": "1.1.0",
    "description": "File online medical claims faster and smarter.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*",
                "https:\/\/www.officeally.com\/*",
                "https:\/\/provider-apps.linkhealth.com\/*"
            ],
            "js": [
                "vendor\/jquery-3.1.0.min.js",
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/www.officeally.com\/*",
        "https:\/\/provider-apps.linkhealth.com\/*"
    ],
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_title": "Quick Claim",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "windows": "Ctrl+Q",
                "mac": "Command+Q",
                "linux": "Ctrl+Q"
            }
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    }
}