-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (33 loc) · 751 Bytes
/
manifest.json
File metadata and controls
34 lines (33 loc) · 751 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": "Word Watcher Alert",
"version": "1.0",
"permissions": [
"scripting",
"tabs",
"storage",
"alarms",
"notifications"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Toggle Word Watcher",
"default_popup": "popup.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"web_accessible_resources": [
{
"resources": ["bell.mp3", "notification.html"],
"matches": ["<all_urls>"]
}
]
}