-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·32 lines (32 loc) · 964 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": "Aqua Buddy",
"version": "1.2.0",
"manifest_version": 3,
"description": "I'm your friend 💙 and I'm here to help you stay hydrated!",
"permissions": ["alarms", "notifications", "storage"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Aqua Buddy",
"default_popup": "popup.html",
"default_icon": {
"16": "images/aqua-buddy-16.png",
"24": "images/aqua-buddy-24.png",
"32": "images/aqua-buddy-32.png",
"64": "images/aqua-buddy-64.png",
"128": "images/aqua-buddy-128.png",
"256": "images/aqua-buddy-256.png",
"512": "images/aqua-buddy-512.png"
}
},
"icons": {
"16": "images/aqua-buddy-16.png",
"24": "images/aqua-buddy-24.png",
"32": "images/aqua-buddy-32.png",
"64": "images/aqua-buddy-64.png",
"128": "images/aqua-buddy-128.png",
"256": "images/aqua-buddy-256.png",
"512": "images/aqua-buddy-512.png"
}
}