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 |
Eメール | [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" ] } |