Quick Claim
File online medical claims faster and smarter.
Qu'est-ce que Quick Claim ?
Quick Claim est une extension Chrome développée par doubleutf26, et sa fonction principale est "File online medical claims faster and smarter.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Quick Claim
Téléchargez les fichiers d'extension Quick Claim au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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**
Informations de Base sur l'Extension
Nom | Quick Claim |
ID | hlmoiemagjdmhpcjeolbcehhildojkki |
URL Officiel | https://chromewebstore.google.com/detail/quick-claim/hlmoiemagjdmhpcjeolbcehhildojkki |
Description | File online medical claims faster and smarter. |
Taille du Fichier | 142 KB |
Nombre d'Installations | 24 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2020-11-20 |
Date de Publication | 2020-01-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | doubleutf26 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |