Covigency - Vaccine Finder App
Find slots for vaccine on Cowin website and book that for you
Wat is Covigency - Vaccine Finder App?
Covigency - Vaccine Finder App is een Chrome-extensie ontwikkeld door mightguy, en de belangrijkste functie is "Find slots for vaccine on Cowin website and book that for you".
Extensie Screenshots
Download het CRX-bestand van de extensie Covigency - Vaccine Finder App
Download Covigency - Vaccine Finder App-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | jnlmlhaodchbjmoaobdjkocaaekooddn |
Officiële URL | https://chrome.google.com/webstore/detail/covigency-vaccine-finder/jnlmlhaodchbjmoaobdjkocaaekooddn |
Beschrijving | Find slots for vaccine on Cowin website and book that for you |
Bestandsgrootte | 212 KB |
Aantal Installaties | 160 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-05-17 |
Publicatiedatum | 2021-05-17 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | mightguy |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |