forked from alanzchen/ClassScheduleToICS-track
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·28 lines (28 loc) · 954 Bytes
/
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
{
"manifest_version": 2,
"name": "CUHK(SZ) & CUHK Class Schedule Exporter",
"version": "1.3.3",
"description": "Export your CUHK(SZ) & CUHK class schedule to your calendar",
"icons": { "128": "icon.png" },
"permissions": ["http://qianjian.space/*", "https://qianjian.space/*"],
"content_scripts": [
{
"matches": ["http://116.31.95.3/*", "http://116.31.95.2/*", "http://58.250.174.66/*"],
"all_frames": true,
"js": ["jquery-1.9.1.min.js", "cuhksz.js", "common.js"]
},
{
"matches": ["https://cusis.cuhk.edu.hk/*"],
"all_frames": true,
"js": ["jquery-1.9.1.min.js", "cuhk.js", "common.js"]
}
],
"background":{
"scripts":["jquery-1.9.1.min.js", "bg.js"],
"persistent": false
},
"page_action": {
"default_icon": "icon.png",
"default_title": "Download Schedule"
}
}