-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 876 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
{
"manifest_version": 3,
"name": "Take a Break",
"version": "1.2.1",
"action": {
"default_icon": "assets/images/logo.png",
"default_popup": "dist/popup.html",
"default_title": "Take a Break"
},
"icons": {
"16": "assets/images/icon16.png",
"32": "assets/images/icon32.png",
"48": "assets/images/icon48.png",
"128": "assets/images/icon128.png"
},
"permissions": [
"storage",
"alarms",
"notifications",
"background",
"scripting"
],
"host_permissions": ["https://*/*", "http://*/*"],
"description": "Take a Break is a Chrome extension that monitors and reminds you to take breaks periodically.",
"background": {
"service_worker": "dist/background.js"
},
"web_accessible_resources": [
{
"resources": ["assets/audio/breakover.mp3"],
"matches": ["https://*/*", "http://*/*"]
}
]
}