Quick Claim
File online medical claims faster and smarter.
Quick Claimとは何ですか?
Quick Claimはdoubleutf26によって開発されたChromeの拡張機能で、その主な機能は「File online medical claims faster and smarter.」です。
拡張機能のスクリーンショット
Quick Claim拡張機能のCRXファイルをダウンロード
Quick Claim拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } } |