forked from settermjd/phparch-firefoxos-basic-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.webapp
37 lines (37 loc) · 937 Bytes
/
manifest.webapp
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
{
"name": "PHP Arch Application",
"description": "This is a test Firefox OS application for PHP Arch",
"version": "1.0",
"launch_path": "/index.html",
"icons": {
"128": "/images/icon128.png",
"64": "/images/icon64.png"
},
"developer": {
"name": "Matthew Setter",
"url": "http://www.matthewsetter.com"
},
"default_locale": "en",
"type": "web",
"chrome": { "navigation": true },
"fullscreen": "true",
"locales": {
"en": {
"name": "PHP Arch Application",
"description": "This is a test Firefox OS application for PHP Arch"
},
"de": {
"name": "PHP Arch Applikation",
"description": "Dieses ist ein test Firefox OS Applikation für PHP Arch"
}
},
"permissions": {
"contacts": {
"description": "Required for autocompletion in the share screen",
"access": "readcreate"
},
"alarms": {
"description": "Required to schedule notifications"
}
}
}