forked from serenadeai/chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 952 Bytes
/
Copy pathmanifest.json
File metadata and controls
34 lines (34 loc) · 952 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
{
"manifest_version": 3,
"name": "WebChime",
"version": "2.0.5",
"description": "Browse the web hands-free with only your voice. This extension pairs with Serenade AI https://serenade.ai.",
"permissions": ["background", "tabs", "storage", "alarms", "idle", "scripting"],
"host_permissions": ["*://*/*"],
"action": {
"default_title": "WebChime for Chrome",
"default_popup": "build/popup.html"
},
"background": {
"service_worker": "build/extension.js"
},
"content_scripts": [
{
"js": ["build/content-script.js"],
"matches": ["*://*/*"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": ["build/injected.js", "build/injected.css"],
"matches": ["*://*/*"]
}
],
"icons": {
"16": "img/icon_default/16x16.png",
"32": "img/icon_default/32x32.png",
"48": "img/icon_default/48x48.png",
"128": "img/icon_default/128x128.png"
}
}