-
Notifications
You must be signed in to change notification settings - Fork 22
/
manifest.json
executable file
·86 lines (86 loc) · 1.55 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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "3.1.1",
"default_locale": "zh_CN",
"description": "__MSG_extDescription__",
"icons": {
"16": "img/Pikachu-16.png",
"32": "img/Pikachu-32.png",
"64": "img/Pikachu-64.png",
"128": "img/Pikachu-128.png"
},
"action": {
"default_icon": "img/Pikachu-16.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"js/login.js"
],
"matches": [
"*://pc.xuexi.cn/points/login.html*"
]
},
{
"js": [
"js/points.js"
],
"matches": [
"*://pc.xuexi.cn/points/my-points.html*"
]
},
{
"js": [
"js/runtime.js"
],
"matches": [
"*://www.xuexi.cn/lgpage/detail/index.html?id=*"
]
},
{
"js": [
"js/exampractice.js",
"js/lib/jquery.js"
],
"matches": [
"*://pc.xuexi.cn/points/exam-practice.html*",
"*://pc.xuexi.cn/points/exam-paper-detail.html*"
]
},
{
"js": [
"js/exampaper.js"
],
"matches": [
"*://pc.xuexi.cn/points/exam-paper-list.html*"
]
},
{
"js": [
"js/redirect.js"
],
"matches": [
"*://*.xuexi.cn/*"
]
}
],
"externally_connectable": {
"matches": [
"*://*.xuexi.cn/*"
]
},
"permissions": [
"tabs",
"notifications",
"storage",
"windows",
"system.display"
],
"host_permissions": [
"*://*.xuexi.cn/*"
]
}