This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
91 lines (91 loc) · 1.98 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "深圳大学校园网助手",
"version": "0.11",
"manifest_version": 2,
"description": "解决深圳大学校园网与 Chrome/Chromium 的兼容性问题",
"icons":
{
"16": "assets/icon.png",
"48": "assets/icon.png",
"128": "assets/icon.png"
},
"browser_action":
{
"default_icon": "assets/icon.png",
"default_title": "深圳大学校园网",
"default_popup": "views/index.html"
},
"background":
{
"scripts": ["lib/background.js"],
"persistent": false
},
"options_page": "views/index.html#option",
"content_scripts":
[
{
"js":
[
"deps/jquery.min.js",
"lib/fixers/legacy-password-control/fake-activex.js"
],
"css": [],
"matches":
[
"http://*.szu.edu.cn/*",
"http://192.168.2.104/*",
"http://192.168.2.113/*",
"http://192.168.2.210/*"
],
"run_at": "document_start",
"all_frames": true
},
{
"js":
[
"deps/jquery.min.js",
"lib/fixers/the-office-of-academic-affairs/iframe-height-fixer.js"
],
"css": [],
"matches": ["http://192.168.2.20/*"],
"run_at": "document_end",
"all_frames": true
},
{
"js":
[
"deps/jquery.min.js",
"lib/fixers/public-board/index-fixer.js"
],
"css": [],
"matches": ["http://www.szu.edu.cn/board/read.asp*"],
"run_at": "document_start"
},
{
"js":
[
"deps/jquery.min.js",
"lib/fixers/online-tv/player-fixer.js"
],
"css": [],
"matches": ["http://www.szu.edu.cn/leisure/*"],
"run_at": "document_start",
"all_frames": true
},
{
"js":
[
"deps/jquery.min.js",
"lib/fixers/legacy-webcc/expandtree-fixer.js"
],
"css": [],
"matches":
[
"http://192.168.2.104/*",
"http://192.168.2.103/*"
],
"run_at": "document_start",
"all_frames": true
}
]
}