Covigency - Vaccine Finder App
Find slots for vaccine on Cowin website and book that for you
什么是Covigency - Vaccine Finder App?
Covigency - Vaccine Finder App是由mightguy开发的Chrome扩展程序,该扩展的主要功能是“Find slots for vaccine on Cowin website and book that for you”。
扩展截图
下载Covigency - Vaccine Finder App扩展crx文件
下载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.
扩展基本信息
名称 | |
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" ] } |