-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (39 loc) · 905 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
35
36
37
38
39
{
"manifest_version": 2,
"name": "Netatmo CO₂ Indicator",
"short_name": "CO₂ Indicator",
"version": "1.6.13",
"description": "See your CO₂ level in the browser toolbar",
"permissions": [
"identity",
"storage",
"alarms",
"theme"
],
"optional_permissions": [
"notifications"
],
"icons": {
"64": "icon.svg"
},
"browser_action": {
"default_title": "Netatmo CO₂ Measurement",
"default_icon": "status/gray.svg"
},
"background": {
"scripts": [
"config.js",
"background.js"
]
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "{4b69f471-a76c-4355-be23-8d9b0c9802db}",
"strict_min_version": "62.0"
}
}
}