-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 969 Bytes
/
manifest.json
File metadata and controls
48 lines (48 loc) · 969 Bytes
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
{
"manifest_version": 3,
"name": "EasyReaderADHD - 阅读辅助",
"version": "1.1.1",
"description": "为 ADHD 和阅读困难用户设计的智能文本高亮阅读辅助工具",
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"128": "src/static/icon-128.png"
},
"action": {
"default_popup": "src/popup/popup.html",
"default_title": "EasyReaderADHD Settings",
"default_icon": "src/static/icon-128.png"
},
"background": {
"service_worker": "dist/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist/content.js"
],
"css": [
"src/styles.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"src/dictionaries/*.json",
"src/dictionaries/ZH/*.json"
],
"matches": [
"<all_urls>"
]
}
]
}