-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.json
32 lines (32 loc) · 975 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
{
"name": "Live Translate",
"description": "Recognize any LIVE audio/video streaming and TRANSLATE it for FREE!",
"version": "0.3.5",
"manifest_version": 3,
"permissions": ["scripting", "background", "tabs", "activeTab", "webNavigation", "storage", "contextMenus", "notifications", "declarativeContent", "declarativeNetRequest", "declarativeNetRequestFeedback"],
"background": {
"service_worker": "js/background.js"
},
"host_permissions": ["*://*/*"],
"action": {
"default_title": "LIVE TRANSLATE V0.3.4\n(Left Click to START/STOP, \nRight Click to set language settings)",
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png"
}
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png"
},
"web_accessible_resources": [
{
"resources": ["mic-listening.png"],
"matches": ["<all_urls>"]
}
]
}