-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathmanifest.json
executable file
·69 lines (63 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"update_url": "http://clients2.google.com/service/update2/crx",
"name": "Electsys++ 交大选课插件",
"author": "laohyx",
"version": "2.6.2",
"icons": {
"48": "logo_new.png",
"128": "logo_new_128.png"
},
"description": "上海交通大学选课网优化工具",
"homepage_url": "https://github.com/laohyx/electsys",
"browser_action": {
"default_icon": {
"48": "logo_new.png",
"128": "logo_new_128.png"
},
"default_title": "Electsys++",
"default_popup": "popup/popup.html"
},
"options_page": "option/option.html",
"content_scripts": [
{
"matches": [
"*://*.sjtu.edu.cn/*"
],
"js": [
"content_script/library/jquery-3.1.1.min.js",
"content_script/library/jquery-ui-1.12.0.min.js",
"content_script/data/lesson_data.js",
"content_script/data/score_map.js",
"content_script/patch/DOMElementPatch.js",
"content_script/core/option.js",
"content_script/page/lesson.js",
"content_script/page/nhce.js",
"content_script/page/eval.js",
"content_script/page/score.js",
"content_script/page/gpa.js",
"content_script/page/login.js",
"content_script/page/eduction_list.js",
"content_script/page/core_course.js",
"content_script/page/index.js",
"content_script/page/frame.js",
"content_script/core/load.js",
"content_script/page/captcha.js"
],
"css": [
"content_script/library/jquery-ui-1.12.0.structure.css"
],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": [
"*://*.sjtu.edu.cn/*",
"notifications",
"storage"
],
"minimum_chrome_version": "49",
"manifest_version": 2,
"web_accessible_resources": [
"manifest.json"
]
}