-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
53 lines (53 loc) · 1.24 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
{
"name": "問卷助手︰南台科大版",
"short_name": "問卷助手",
"manifest_version": 2,
"version": "1.2.7",
"description": "我給老師滿分!",
"icons":
{
"16": "icons/icon_16.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"background":
{
"page": "background.html",
"persistent": true
},
"browser_action":
{
"default_title": "",
"default_icon": "icons/icon_16.png"
},
"permissions":
[
"https://eportal.stust.edu.tw/teaching_feedback/*",
"https://identity.stust.edu.tw/*"
],
"homepage_url": "http://www.osk2.me",
"content_scripts":
[
{
"matches":
[
"https://eportal.stust.edu.tw/teaching_feedback/Stud_FeedBack.aspx?auto_survey=1"
],
"js":
[
"js/jquery-2.0.3.min.js",
"js/sweet-alert.min.js",
"js/content_script.min.js"
],
"css":
[
"css/sweet-alert.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources":
[
"js/jquery-2.0.3.min.map"
]
}