Covigency - Vaccine Finder App

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

Vad är Covigency - Vaccine Finder App?

Covigency - Vaccine Finder App är en Chrome-tillägg utvecklad av mightguy, och dess huvudfunktion är "Find slots for vaccine on Cowin website and book that for you".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Covigency - Vaccine Finder App-förlängningens CRX-fil

Ladda ner Covigency - Vaccine Finder App-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Covigency - Vaccine Finder App Covigency - Vaccine Finder App
ID jnlmlhaodchbjmoaobdjkocaaekooddn
Officiell webbadress https://chrome.google.com/webstore/detail/covigency-vaccine-finder/jnlmlhaodchbjmoaobdjkocaaekooddn
Beskrivning Find slots for vaccine on Cowin website and book that for you
Filstorlek 212 KB
Antal Installationer 160
Aktuell Version 1.0.0
Senast Uppdaterad 2021-05-17
Publiceringsdatum 2021-05-17
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare mightguy
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}