-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (36 loc) · 968 Bytes
/
manifest.json
File metadata and controls
37 lines (36 loc) · 968 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
{
"name": "LexiBridge: 英语学习,从阅读开始",
"version": "1.2.8",
"description": "LexiBridge 是一个开源、无服务器的英语学习应用程序,帮助英语学习者在阅读网页时学习新词汇,提升阅读流畅度。",
"manifest_version": 3,
"author": "chan.mo@outlook.com",
"homepage_url": "https://chanmo.github.io/LexiBridge/",
"action": {
"default_title": "LexiBridge",
"default_popup": "popup.html",
"default_icon": "icon_96.png"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["script.js"],
"css": ["app.css"]
}
],
"permissions": ["tabs", "storage", "tts"],
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"web_accessible_resources": [
{
"resources": ["words/*"],
"matches": ["*://*/*"]
}
]
}