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”。

擴展截圖

screenshot
screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Covigency - Vaccine Finder App Covigency - Vaccine Finder App
ID jnlmlhaodchbjmoaobdjkocaaekooddn
官方網址 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"
    ]
}