-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmanifest.json
43 lines (43 loc) · 1.04 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
{
"manifest_version": 2,
"name": "TsingHuaELT网课助手",
"version": "0.0.5",
"description": "显示清华社英语在线题目答案;支持班级测试;开放自定义设置",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "TsingHuaELT网课助手"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://www.tsinghuaelt.com/*"
],
"js": [
"inject.js",
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"storage",
"*://47.100.166.53/*",
"https://www.tsinghuaelt.com/*"
],
"web_accessible_resources": [
"main.js"
],
"homepage_url": "https://www.github.com/SSmJaE/"
}