-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmanifest.json
More file actions
76 lines (76 loc) ยท 2.06 KB
/
Copy pathmanifest.json
File metadata and controls
76 lines (76 loc) ยท 2.06 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "KLAS Helper",
"manifest_version": 3,
"version": "2.2.1.0",
"description": "๊ด์ด๋ํ๊ต KLAS ์ฌ์ดํธ์ ํธ๋ฆฌํ ๊ธฐ๋ฅ์ ์ถ๊ฐํ๋ ๋ธ๋ผ์ฐ์ ํ์ฅ ํ๋ก๊ทธ๋จ",
"homepage_url": "https://github.com/klas-helper/klas-helper-extension",
"permissions": ["storage"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets/images/icon-16x16.png",
"32": "assets/images/icon-32x32.png",
"48": "assets/images/icon-48x48.png",
"128": "assets/images/icon-128x128.png"
}
},
"icons": {
"16": "assets/images/icon-16x16.png",
"32": "assets/images/icon-32x32.png",
"48": "assets/images/icon-48x48.png",
"128": "assets/images/icon-128x128.png"
},
"content_scripts": [
{
"matches": ["https://klas.kw.ac.kr/*"],
"js": ["content-style.js"],
"run_at": "document_start"
},
{
"matches": ["https://klas.kw.ac.kr/*"],
"js": ["content-main.js"],
"run_at": "document_end"
},
{
"matches": ["https://kwcommons.kw.ac.kr/*"],
"js": ["content-video.js"],
"run_at": "document_end",
"all_frames": true
}
],
"web_accessible_resources": [
{
"matches": ["https://klas.kw.ac.kr/*", "https://kwcommons.kw.ac.kr/*"],
"resources": [
"assets/js/jszip.min.js",
"assets/js/FileSaver.js",
"assets/js/Chart.min.js",
"assets/js/jquery.modal.min.js",
"assets/css/jquery.modal.min.css",
"dark.css",
"imgSize.css",
"app.js",
"app.css",
"data/everytime-lectures.json"
]
},
{
"matches": ["https://kwcommons.kw.ac.kr/*"],
"resources": [
"video-viewer.js"
]
}
],
"background": {
"scripts": ["background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "klas-helper@kw-service",
"update_url": "https://raw.githubusercontent.com/klas-helper/klas-helper-extension/main/update/manifest.json",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}