-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
54 lines (54 loc) · 1.57 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
48
49
50
51
52
53
54
{
"manifest_version": 3,
"name": "portalext",
"version": "1.0",
"description": "Portalをextendします。",
"action": {
"default_title": "Hello"
},
"content_scripts": [
{
"matches": [
"https://portal.mc.chitose.ac.jp/portal2/MyPage*"
],
"js": [
"features/timetable_link/toppage.content.js"
]
},
{
"matches": [
"https://portal.mc.chitose.ac.jp/portal2/*"
],
"js": [
"features/helper/page_detect.content.js",
"features/textarea_validation/lecture.content.js",
"features/lookback_with_goals/lookback.content.js",
"features/clickable_current_tab/all.content.js"
],
"css": [
"features/textarea_validation/lecture.content.css",
"features/clickable_current_tab/all.content.css"
]
},
{
"matches": [
"https://solomon.mc.chitose.ac.jp/wbt/*"
],
"js": [
"features/helper/cbt_page_detect.content.js",
"features/solomon_reanswer_feedback_text/cbt_question.content.js"
],
"all_frames": true
}
],
"background": {
"service_worker": "features/solomon_reanswer_feedback_text/cbt_question.background.js"
},
"permissions": [
"storage",
"webRequest"
],
"host_permissions": [
"*://solomon.mc.chitose.ac.jp/wbt/*"
]
}