-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.02 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
{
"manifest_version": 2,
"name": "专升本学霸插件",
"version": "2.0.0",
"description": "专升本学霸插件,兼容东华大学、上海大学继续教育学习平台",
"icons": {
"16": "img/icon.png",
"48": "img/icon.png",
"128": "img/icon.png"
},
"permissions": [
"notifications",
"declarativeContent",
"contextMenus",
"https://sdjj.ct-edu.com.cn/learning/*",
"https://donghuacj.ct-edu.com.cn/learning/*"
],
"content_scripts": [
{
"matches": [
"https://sdjj.ct-edu.com.cn/learning/*",
"https://donghuacj.ct-edu.com.cn/learning/*"
],
"js": [
"js/content.js",
"js/selfTestData.js",
"js/axios.min.js"
],
"css": [
"css/content.css"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"js/background.js"
]
},
"page_action": {
"default_icon": "img/icon.png",
"default_title": "这是一个示例Chrome插件",
"default_popup": "popup.html"
}
}