-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanifest.json
39 lines (37 loc) · 1011 Bytes
/
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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Bionify | Read faster!",
"description": "Open source text converter designed to help you read faster!",
"author": "Vincent Wu",
"version": "0.0.4",
"manifest_version": 3,
"icons": {
"16": "src/icons/favicon-16.png",
"32": "src/icons/favicon-32.png",
"48": "src/icons/favicon-48.png",
"128": "src/icons/favicon-128.png"
},
"background": {
"service_worker": "src/background.js",
"type": "module"
},
"permissions": ["storage", "activeTab", "scripting", "tabs"],
"host_permissions": ["http://*/", "https://*/"],
"action": {
"default_popup": "src/popup/popup.html"
},
"commands": {
"toggle-bionify": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Bionify the current tab"
},
"toggle-auto-bionify": {
"suggested_key": {
"default": "Ctrl+Shift+H"
},
"description": "Toggle auto Bionify"
}
}
}