-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
51 lines (51 loc) · 968 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
46
47
48
49
50
51
{
"name": "Shraga",
"description": "Shraga will help you to book a myvisit appointments",
"version": "1.0.2",
"version_name": "1.0.2",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "/img/icons/icon.png"
}
},
"icons": {
"128": "/img/icons/icon.png"
},
"web_accessible_resources": [
{
"resources": [
"img/icons/*.*",
"font/*.woff2",
"css/*.css",
"sound/*.*"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://*.myvisit.com/*"
],
"js": [
"js/jquery-3.6.0.min.js",
"js/multi-select.min.js",
"js/jBox.all.min.js",
"js/lc_select.js",
"content.js"
],
"css": [
"css/lc_select.css",
"css/css.css",
"css/jBox.all.min.css"
]
}
]
}