-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (47 loc) · 1.3 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
46
47
{
"manifest_version": 3,
"name": "Plato Calendar 2",
"version": "1.0.5",
"description": "부산대학교 교육플랫폼 플라토 확장 프로그램",
"background": {
"service_worker": "service-worker.js",
"type": "module"
},
"icons": {
"16": "assets/img/icon-16.png",
"32": "assets/img/icon-32.png",
"48": "assets/img/icon-48.png",
"128": "assets/img/icon-128.png"
},
"content_scripts": [
{
"matches": ["https://plato.pusan.ac.kr/*"],
"css": ["assets/prev-style.css", "assets/loader.css"],
"js": ["content-script.js"]
}
],
"permissions": ["storage"],
"web_accessible_resources": [
{
"resources": [
"assets/img/down.png",
"assets/img/up.png",
"assets/img/left.png",
"assets/img/loading.png",
"assets/img/right.png",
"assets/img/homework.png",
"assets/img/homeworkDone.png",
"assets/img/quiz.png",
"assets/img/quizDone.png",
"assets/img/video.png",
"assets/img/videoDone.png",
"assets/img/zoom.png",
"assets/img/zoomDone.png",
"assets/calendar.html",
"assets/new-style.css",
"assets/prev-style.css"
],
"matches": ["https://plato.pusan.ac.kr/*"]
}
]
}