-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
45 lines (45 loc) · 921 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "Isla Diplo",
"description": "If you don't know what it is, you don't need it.",
"version": "1.3.0",
"manifest_version": 3,
"icons": {
"48": "icons/pencil.png"
},
"action": {
"default_title": "Isla Diplo",
"default_icon": {
"48": "icons/pencil.png"
}
},
"permissions": [
"activeTab",
"tabs",
"scripting"
],
"background": {
"service_worker": "core/background.js"
},
"content_scripts": [
{
"matches": [
"https://service2.diplo.de/rktermin/extern/appointment_showForm.do*",
"https://service2.diplo.de/rktermin/extern/appointment_refreshCaptcha.do*"
],
"js": [
"libs/jquery-3.6.3.min.js",
"core/contentscript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"data.json"
],
"matches": [
"https://service2.diplo.de/*"
]
}
]
}