-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.webapp
76 lines (63 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
{
"name": "Macaw",
"description": "An open source micro-blogging client, with support for ADN (app.net) and Twitter (twitter.com).",
"launch_path": "/index.html",
"version": "1.2.2",
"icons": {
"512": "/icon512.png",
"256": "/icon256.png",
"128": "/icon128.png",
"64": "/icon64.png",
"32": "/icon32.png",
"48": "/icon48.png",
"24": "/icon24.png"
},
"developer": {
"name": "Micah N Gorrell",
"url": "http://minego.net"
},
"permissions": {
"systemXHR": {
"description": "Required to access twitter.com and app.net"
},
"geolocation": {
"description": "Required to geo-tag posts"
},
"desktop-notification": {
"description": "Required to post notifications of new messages"
},
"alarms": {
"description": "Allow waking to check for new messages"
}
},
"activities": {
"share": {
"href": "/index.html",
"disposition": "window",
"returnValue": false
}
},
"messages": [
{ "alarm": "/index.html" }
],
"type": "privileged",
"default_locale": "en",
"locales": {
"fr": {
"launch_path": "/index.html?lang=fr",
"description": "Un client open source de micro-blogging, compatible ADN (app.net) et Twitter (twitter.com)."
},
"nl": {
"launch_path": "/index.html?lang=nl",
"description": "Een open source micro-blogging client met ondersteuning voor ADN (app.net) en Twitter (twitter.com)."
},
"es": {
"launch_path": "/index.html?lang=es",
"description": "Un cliente de micro-blogging de código abierto, con soporte para ADN (app.net) y Twitter (twitter.com)."
},
"de": {
"launch_path": "/index.html?lang=de",
"description": "Ein quellofferner Micro-Blogging-Client mit Unterstützung für ADN (app.net) und Twitter (twitter.com)."
}
}
}