-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
57 lines (57 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
48
49
50
51
52
53
54
55
56
57
{
"manifest_version": 3,
"name": "Lazuli",
"version": "1.1.2",
"description": "开源版本浙江大学教务系统选课插件,支持离线/在线查老师评分数据显示,优化教务系统体验",
"author": "ADSR1042",
"default_locale": "zh_CN",
"icons": {
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"http://zdbk.zju.edu.cn/jwglxt/*",
"https://zdbk.zju.edu.cn/jwglxt/*"
],
"js": ["lib/js/jquery.min.js", "js/util.js","js/content-script.js"],
"css": ["lib/css/inject.css"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "js/background.js"
},
"options_page": "html/options.html",
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"permissions": [
"notifications",
"storage"
],
"action": {
"default_icon": "icon.png",
"default_popup": "html/popup.html"
},
"content_security_policy": {},
"externally_connectable": {
"matches": ["*://zdbk.zju.edu.cn/*"]
},
"web_accessible_resources": [
{
"resources": ["data/default.json"],
"matches": [
"http://zdbk.zju.edu.cn/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}