-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 896 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "Book your Ontario COVID Vaccine",
"description": "Automation script to automatically scan through the Ontario Health portal in order to find available booking times",
"version": "0.0.5",
"manifest_version": 3,
"permissions": [
"tabs"
],
"action": {
"default_icon": {
"16": "/assets/img/favicon16.png",
"32": "/assets/img/favicon32.png",
"128": "/assets/img/favicon128.png"
}
},
"background": {
"service_worker": "background-service-worker.js"
},
"content_scripts": [
{
"matches": ["https://vaccine.covaxonbooking.ca/*"],
"js": [
"/assets/js/jquery-3.6.1-pre.min.js",
"/assets/js/lodash-1.8.3.min.js",
"/components/pageWatcher/pageWatcher.js"
]
}
],
"icons": {
"16": "/assets/img/icon16.png",
"32": "/assets/img/icon32.png",
"128": "/assets/img/icon128.png"
}
}