VA Claim Tracker

Extension to help veterans review data related to their disability claim.

VA Claim Trackerคืออะไร?

VA Claim Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย usvets และคุณลักษณะหลักของมันคือ "Extension to help veterans review data related to their disability claim."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VA Claim Tracker

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

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

                        Most veterans filing for disability claims with the VA find it hard to obtain a complete overview of their claim progress. This extension provides more details on the veterans claim status by using data already provided by the claim detail page in an easy to understand format.

NOTE: 
This extension does NOT change anything on your claim page or any other page and only can interact with VA.gov claim pages.

Features
- Claims data is structured in an easy to digest format 
- Review Standard claims
- Review HLR (Higher Level Review) claims
- Review Supplemental Claims
- Review Appeal claims
- Field description tool tips for Appeal type claims
- Standard claim show current phase and not just overall status
- Review Internally Tracked Items
- Clear locally saved claim data
- Refresh Claim Data
- Dark / Light Theme


DISCLAIMER: VA Claim Tracker is licensed under CC BY-NC-ND 4.0 and has no affiliation with VA.gov or it's entities, and is FREE to use. This extension does NOT use cookies, track or transmit user data outside of extension.                    

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

ชื่อ VA Claim Tracker VA Claim Tracker
ID onbanekcefgnibhlaiimeadkbdahjpoo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/va-claim-tracker/onbanekcefgnibhlaiimeadkbdahjpoo
คำอธิบาย Extension to help veterans review data related to their disability claim.
ขนาดไฟล์ 1.31 MB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 2.0.4
อัปเดตครั้งล่าสุด 2024-02-26
วันที่เผยแพร่ 2023-11-18
คะแนน 4.94/5 รวมทั้งหมด 152 คะแนน
ผู้พัฒนา usvets
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VA Claim Tracker",
    "version": "2.0.4",
    "description": "Extension to help veterans review data related to their disability claim.",
    "author": "CoderX",
    "icons": {
        "16": "favicon.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_name": "VA Claim Tracker"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/www.va.gov\/",
        "https:\/\/api.va.gov\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "content-script.js",
                "script.js"
            ],
            "run_at": "document_start",
            "matches": [
                "*:\/\/www.va.gov\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.va.gov\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                "*:\/\/www.va.gov\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
    }
}