This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.webapp
99 lines (99 loc) · 2.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "Prospector",
"description": "A File Explorer for Firefox OS",
"version": "0.1",
"type": "privileged",
"launch_path": "/index.html",
"developer": {
"name": "Codexa",
"url": "http://www.codexa.org"
},
"icons": {
"64": "/img/app/ic/app64.png",
"128": "/img/app/ic/app128.png",
"256": "/img/app/ic/app256.png"
},
"default_locale": "en-US",
"locales": {
"en-US": {
"name": "Prospector",
"description": "A File Explorer for Firefox OS"
},
"ar": {
"name": "Prospector",
"description": "A مستكشف الملفات لفايرفوكس OS"
},
"de": {
"name": "Prospector",
"description": "Ein Datei-Explorer für Firefox OS"
},
"el": {
"name": "Prospector",
"description": "Μια File Explorer για τον Firefox OS"
},
"es": {
"name": "Prospector",
"description": "Un explorador de archivos para Firefox OS"
},
"fr": {
"name": "Prospector",
"description": "Un explorateur de fichiers pour Firefox OS"
},
"it": {
"name": "Prospector",
"description": "Un File Explorer per Firefox OS"
},
"pt-BR": {
"name": "Prospector",
"description": "A File Explorer para o Firefox OS"
},
"ru": {
"name": "Prospector",
"description": "File Explorer для Firefox OS"
},
"tr": {
"name": "Prospector",
"description": "Firefox OS için bir Dosya Gezgini"
},
"zh-TW": {
"name": "Prospector",
"description": "一个文件浏览器火狐OS"
}
},
"permissions": {
"device-storage:sdcard": {
"access": "readwrite"
}
},
"activities": {
"open": {
"href": "./index.html",
"disposition": "window",
"filters": {
"path": {
"required": true
},
"type": [
"directory/plain"
]
},
"returnValue": false
},
"pick": {
"href": "./sieve.html",
"disposition": "inline",
"filters": {
"path": {
"required": false
},
"type": {
"required": false
},
"multiple": {
"required": false
}
},
"returnValue": true
}
}
}