OK COVID Vaccine Scheduler Assistant

This extension filters through and hides all of the locations on the vaccine portal which currently don't have appointments.

OK COVID Vaccine Scheduler Assistant란 무엇입니까?

OK COVID Vaccine Scheduler Assistant은(는) jacrys에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension filters through and hides all of the locations on the vaccine portal which currently don't have appointments."입니다.

확장 프로그램 스크린샷

screenshot

OK COVID Vaccine Scheduler Assistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        *******OSDH updated the site and added a couple of new buttons labelled "Available Appointments" and "Invitations Code"  you can either use their "Available Appointments" button or mine.  They do different things.  Mine filters the list in place, theirs takes you to a new page with all available appointments in a time frame.**************

This extension modifies the Oklahoma State Department of Health'*s COVID vaccination site (vaccination.oklahoma.gov) to eliminate the extra appointment locations which do not currently have available appointments.  

To use:
 - Go to the booking link sent to you by OSDH (Subject: "COVID-19 Vaccine - Book Appointment
").
- Once you are at the Locations Search screen:
  * Select your dose (1st, 2nd, or both)
  * Select Vaccine Manufacturer (Pfizer, Moderna, or Janssen [Johnson & Johnson])    
  * Click the green "Show Only Available" button.  
- Unavailable sites disappear
- Select an available site
- Profit

*This extension is not developed by, has not been sanctioned by, nor has been reviewed or endorsed by the OSDH.                    

확장 프로그램 기본 정보

이름 OK COVID Vaccine Scheduler Assistant OK COVID Vaccine Scheduler Assistant
ID ekgiddhapmpmjlaenhpbnmipdjhijlcg
공식 URL https://chromewebstore.google.com/detail/ok-covid-vaccine-schedule/ekgiddhapmpmjlaenhpbnmipdjhijlcg
설명 This extension filters through and hides all of the locations on the vaccine portal which currently don't have appointments.
파일 크기 927 KB
설치 횟수 83
현재 버전 1.3
최근 업데이트 2021-04-03
출시 날짜 2021-02-28
평점 5.00/5 총 4 개의 평점
개발자 jacrys
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Jacrys/OK-Covid-vax-appt-assistant
도움말 페이지 URL https://github.com/Jacrys/OK-Covid-vax-appt-assistant
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OK COVID Vaccine Scheduler Assistant",
    "description": "This extension filters through and hides all of the locations on the vaccine portal which currently don't have appointments.",
    "version": "1.3",
    "icons": {
        "16": "images\/needle16w.png",
        "32": "images\/needle32w.png",
        "48": "images\/needle48w.png",
        "64": "images\/needle64w.png",
        "128": "images\/needle128w.png"
    },
    "permissions": [
        "https:\/\/vaccinate.oklahoma.gov\/*\/covidvaccine-location-map\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vaccinate.oklahoma.gov\/*\/covidvaccine-location-map\/"
            ],
            "js": [
                "js\/jquery-3.5.1.min.js",
                "js\/filter.js"
            ],
            "css": [
                "css\/filter.css"
            ]
        }
    ]
}