This repository has been archived by the owner on Oct 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
manifest.webapp
138 lines (138 loc) · 3.33 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "Firetext",
"description": "The word processor for Firefox OS",
"version": "0.5.1",
"type": "privileged",
"launch_path": "/index.html",
"developer": {
"name": "Codexa",
"url": "https://github.com/codexa"
},
"icons": {
"32": "/style/icons/app/32.png",
"60": "/style/icons/app/60.png",
"90": "/style/icons/app/90.png",
"120": "/style/icons/app/120.png",
"256": "/style/icons/app/256.png"
},
"default_locale": "en",
"locales": {
"bg": {
"description": "Програмата за текстова обработка на Файърфокс ОС"
},
"bn-BD": {
"description": "ফায়ারফক্স ওএস এর জন্য ওয়ার্ড প্রসেসর"
},
"bn-IN": {
"description": "Firefox OS এর word processor"
},
"cs": {
"description": "Textový procesor pro Firefox OS"
},
"de": {
"description": "Die Textverarbeitung für Firefox OS"
},
"eo": {
"description": "La tekstredaktilo por Firefox OS"
},
"es": {
"description": "El procesador de textos para Firefox OS"
},
"fa-IR": {
"description": "پردازش واژه برای سیستم عامل فایرفاکس"
},
"fr": {
"description": "L'éditeur de texte pour Firefox OS"
},
"he": {
"description": "מעבד התמלילים ל-Firefox OS"
},
"hi-IN": {
"description": "फ़ायरफ़ॉक्स ओएस के लिए फायरटेक्सट"
},
"hu": {
"description": "A Firefox OS szövegszerkesztője"
},
"id": {
"description": "Pengolah kata untuk Firefox OS"
},
"it": {
"description": "L'editor di testo per Firefox OS"
},
"ja": {
"description": "Firefox OS 用のワードプロセッサーです"
},
"ml-IN": {
"description": "ഫയര്ഫോക്സ് ഒയസിന്റെ വേര്ഡ് പ്രോസ്സസര്"
},
"nl": {
"description": "De tekstverwerker voor Firefox OS"
},
"pl": {
"description": "Procesor tekstu dla Firefox OS"
},
"pt-BR": {
"description": "O processador de texto para Firefox OS"
},
"ro": {
"description": "Procesorul word pentru Firefox OS"
},
"ru": {
"description": "Текстовый процессор для Firefox OS"
},
"ta-IN": {
"description": "Firefox OS க்கான சொல் செயலி"
},
"zh-CN": {
"description": "适用于 Firefox OS 的文字处理程序"
}
},
"permissions": {
"device-storage:sdcard": {
"description": "Required for document storage.",
"access": "readwrite"
}
},
"redirects": [
{
"from": "https://firetext-server.herokuapp.com/auth/dropbox/oauth2/",
"to": "/modules/oauth2/index.html"
}
],
"activities": {
"open": {
"href": "./index.html",
"disposition": "window",
"filters": {
"type": [
"text/plain",
"text/html"
],
"url": {
"required": true
},
"editable": {
"required": false
}
},
"returnValue": false
},
"view": {
"href": "./index.html",
"disposition": "window",
"filters": {
"type": [
"text/plain",
"text/html"
],
"url": {
"required": true
},
"editable": {
"required": false
}
},
"returnValue": false
}
}
}