Covigency - Vaccine Finder App

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

Cos'è Covigency - Vaccine Finder App?

Covigency - Vaccine Finder App è un'estensione di Chrome sviluppata da mightguy, e la sua funzione principale è "Find slots for vaccine on Cowin website and book that for you".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Covigency - Vaccine Finder App

Scarica i file di estensione Covigency - Vaccine Finder App in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Covigency - Vaccine Finder App Covigency - Vaccine Finder App
ID jnlmlhaodchbjmoaobdjkocaaekooddn
URL Ufficiale https://chrome.google.com/webstore/detail/covigency-vaccine-finder/jnlmlhaodchbjmoaobdjkocaaekooddn
Descrizione Find slots for vaccine on Cowin website and book that for you
Dimensione del File 212 KB
Conteggio Installazioni 160
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-05-17
Data di Pubblicazione 2021-05-17
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore mightguy
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}