Covigency - Vaccine Finder App

Find slots for vaccine on Cowin website and book that for you

Covigency - Vaccine Finder Appคืออะไร?

Covigency - Vaccine Finder App เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mightguy และคุณลักษณะหลักของมันคือ "Find slots for vaccine on Cowin website and book that for you"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Covigency - Vaccine Finder App

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

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

                        This extension helps you to find and book a slot for the covid vaccine in India from CoWin Govt. website. This extension also supports notifications in case your area got a new vaccine slot.                    

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

ชื่อ Covigency - Vaccine Finder App Covigency - Vaccine Finder App
ID jnlmlhaodchbjmoaobdjkocaaekooddn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/covigency-vaccine-finder/jnlmlhaodchbjmoaobdjkocaaekooddn
คำอธิบาย Find slots for vaccine on Cowin website and book that for you
ขนาดไฟล์ 212 KB
จำนวนการติดตั้ง 160
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-05-17
วันที่เผยแพร่ 2021-05-17
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา mightguy
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Covigency - Vaccine Finder App",
    "short_name": "Covigency V-Finder",
    "author": "Lucky Sharma",
    "description": "Find slots for vaccine on Cowin website and book that for you",
    "version": "1.0.0",
    "icons": {
        "16": "assets\/CV16.png",
        "32": "assets\/CV32.png",
        "48": "assets\/CV48.png",
        "128": "assets\/CV128.png"
    },
    "browser_action": {
        "default_title": "Covigency Vaccine Finder",
        "default_icon": "assets\/CV16.png",
        "default_popup": "views\/popup.html"
    },
    "options_page": "views\/options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/selfregistration.cowin.gov.in\/dashboard",
                "https:\/\/selfregistration.cowin.gov.in\/appointment"
            ],
            "js": [
                "js\/jquery-3.4.1.min.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/jquery-3.4.1.min.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "notifications"
    ]
}