-
Notifications
You must be signed in to change notification settings - Fork 19
/
manifest.webapp
84 lines (84 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "File Manager",
"description": "File Manager for Firefox OS",
"launch_path": "/index.html",
"icons": {
"60": "/style/icons/icon_60.png",
"64": "/style/icons/icon_64.png",
"128": "/style/icons/icon_128.png",
"512": "/style/icons/icon_512.png"
},
"version": "1.0-beta2",
"developer": {
"name": "Jhon Klever",
"url": "https://github.com/elfoxero"
},
"default_locale": "en",
"permissions": {
"device-storage:sdcard": {
"description": "To access files from the SD card",
"access": "readwrite"
}
},
"activities": {
"open": {
"filters": {
"type": ["text/plain", "text/javascript", "application/x-javascript", "text/xml", "text/css", "text/html", "application/zip"]
},
"disposition": "inline",
"returnValue": true,
"href": "/elements/viewer.html"
},
"pick-folder": {
"disposition": "inline",
"returnValue": true,
"href": "/elements/folder.html"
},
"filemanager@elfoxero:pick-folder": {
"disposition": "inline",
"returnValue": true,
"href": "/elements/folder.html"
},
"pick": {
"disposition": "inline",
"returnValue": true,
"href": "/elements/pick.html"
}
},
"locales": {
"ca": {
"name": "Gestió de fitxers"
},
"de": {
"name": "Dateimanager"
},
"es": {
"name": "Mis Archivos"
},
"eu": {
"name": "Nire fitxategiak"
},
"fr": {
"name": "Mes Fichiers"
},
"it": {
"name": "File Manager"
},
"ja": {
"name": "File Manager"
},
"nl": {
"name": "Bestandsbeheer"
},
"pl": {
"name": "Menedżer Plików"
},
"pt-BR": {
"name": "Meus Arquivos"
},
"uk": {
"name": "File Manager"
}
},
"type": "privileged"
}