Covigency - Vaccine Finder App
Find slots for vaccine on Cowin website and book that for you
ما هو Covigency - Vaccine Finder App؟
Covigency - Vaccine Finder App هو إضافة Chrome تم تطويرها بواسطة mightguy، والميزة الرئيسية لها هي "Find slots for vaccine on Cowin website and book that for you".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Covigency - Vaccine Finder App
قم بتنزيل ملفات الامتداد Covigency - Vaccine Finder App بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |