-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
45 lines (45 loc) · 944 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": "Comfortable PandA",
"description": "__MSG_EXTENSION_DESCRIPTION__",
"version": "----",
"manifest_version": 3,
"default_locale": "ja",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"action": {
"default_title": "Comfortable PandA",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"content_script.js"
],
"css": [
"css/comfortable-sakai.css"
],
"matches": ["https://panda.ecs.kyoto-u.ac.jp/*"]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"css/comfortable-sakai.css",
"img/logo.png",
"img/noAssignment.png",
"img/miniSakaiBtn.png",
"img/closeBtn.svg"
],
"matches": ["https://panda.ecs.kyoto-u.ac.jp/*"]
}
]
}