-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 1.06 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
{
"name": "小梦",
"version": "2024.07.29",
"manifest_version": 3,
"description": "源梦的小助手",
"icons": {
"16": "icons/ym16x16.png",
"32": "icons/ym32x32.png",
"48": "icons/ym48x48.png",
"128": "icons/ym128x128.png"
},
"permissions": [
"tabs",
"downloads",
"notifications",
"storage"
],
"host_permissions": [
"https://api.sourcedream.cn/*",
"https://mooc1.chaoxing.com/*",
"https://i.mi.com/*",
"http://jxpc-cdut-edu-cn.vpn.cdut.edu.cn:8118/*"
],
"background": {
"service_worker": "background/index.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["https://mooc1.chaoxing.com/*", "https://i.mi.com/*", "http://jxpc-cdut-edu-cn.vpn.cdut.edu.cn:8118/*"],
"css": ["content/index.css"],
"js": ["content/jquery.js", "content/index.js"]
}
],
"action": {
"default_popup": "popup/index.html"
}
}