forked from myCodebox/wallabag-fxos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.webapp
45 lines (45 loc) · 1008 Bytes
/
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
{
"version": "1.0.0-rc2",
"name": "wallabag",
"description": "This app allows storing on your wallabag as well as reading added items",
"launch_path": "/index.html",
"icons": {
"16": "/img/icons/icon16x16.png",
"48": "/img/icons/icon48x48.png",
"60": "/img/icons/icon60x60.png",
"128": "/img/icons/icon128x128.png"
},
"developer": {
"name": "Frederik Braun",
"url": "https://frederik-braun.com"
},
"type": "privileged",
"permissions": {
"systemXHR": {
"description": "Required to talk to your wallabag server."
}
},
"messages": [
{
"alarm": "/index.html?alarm"
}
],
"activities": {
"share": {
"filters": {
"type": "url",
"url": {
"required": true,
"pattern": "(https?|rtsp|data):.{1,16384}"
}
},
"disposition": "inline",
"href": "/index.html?share",
"returnValue": true
}
},
"installs_allowed_from": [
"*"
],
"default_locale": "en"
}