-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.webapp
42 lines (42 loc) · 1.17 KB
/
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
38
39
40
41
42
{
"version": "2.2.0",
"name": "Finder",
"description": "File search and file picker app for Firefox OS",
"launch_path": "/index.html",
"icons": {
"48": "/img/icons/48.png",
"60": "/img/icons/60.png",
"128": "/img/icons/128.png",
"512": "/img/icons/512.png"
},
"developer": {
"name": "Applait",
"url": "http://applait.com"
},
"type": "privileged",
"permissions": {
"device-storage:sdcard": {
"access": "readonly",
"description": "Search files from the sdcard"
}
},
"installs_allowed_from": [
"*"
],
"default_locale": "en",
"activities": {
"pick": {
"href": "./index.html#activity",
"disposition": "window",
"filters": {
"type": [
"image/*", "image/jpeg", "image/png", "image/gif", "image/bmp",
"audio/*", "audio/ogg", "audio/mp4", "audio/mpeg",
"video/*", "video/mp4", "video/webm", "video/3gpp",
"application/pdf"
]
},
"returnValue": true
}
}
}