-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 1.07 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
{
"manifest_version": 3,
"name": "Hisnet Redirector",
"description": "__MSG_description__",
"version": "1.4",
"default_locale": "ko",
"permissions": ["storage"],
"host_permissions": [
"https://hisnet.handong.edu/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://hisnet.handong.edu/"],
"js": ["content_home.js"]
},
{
"matches": ["https://hisnet.handong.edu/for_student/main.php"],
"js": ["content_student_main.js"]
},
{
"matches": ["https://hisnet.handong.edu/*"],
"exclude_matches": [
"https://hisnet.handong.edu/",
"https://hisnet.handong.edu/login*",
"https://hisnet.handong.edu/main.php",
"https://hisnet.handong.edu/for_student/main.php",
"https://hisnet.handong.edu/myboard/list.php"
],
"js": ["content_other.js"],
"run_at": "document_start"
}
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}