forked from dunglas/vaccin.click
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.13 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "vaccin.click",
"version": "1.2",
"description": "Trouvez et réservez automatiquement votre créneau de vaccination COVID-19.",
"author": "Kévin Dunglas",
"homepage_url": "https://dunglas.fr",
"icons": {
"48": "icons/vaccine-color.svg",
"96": "icons/vaccine-color.svg"
},
"permissions": [
"*://*.doctolib.fr/*",
"storage",
"notifications"
],
"web_accessible_resources": [
"icons/vaccine-color.svg"
],
"browser_action": {
"default_icon": "icons/vaccine-color.svg",
"default_title": "vaccin.click : mon vaccin COVID-19 en 1 click !",
"default_popup": "browser_action/index.html",
"browser_style": true
},
"content_scripts": [
{
"matches": ["*://*.doctolib.fr/vaccination-covid-19*"],
"js": ["content_scripts/doctolib/search.js"]
},
{
"matches": ["*://*.doctolib.fr/*"],
"js": ["content_scripts/doctolib/book.js"],
"all_frames": true
}
],
"background": {
"scripts": ["background_scripts/index.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}