forked from jbarbin/EPub-Reader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.webapp
34 lines (34 loc) · 878 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
{
"name": "EPub-Reader",
"description": "An Open Web Application to read Ebook in Epub format",
"launch_path": "/index.html",
"icons": {
"48": "/images/logo/48/logo_48.png",
"60": "/images/logo/60/logo_60.png",
"128": "/images/logo/128/logo_128.png"
},
"developer": {
"name": "Benoit Philippe, Barbin Jonathan, Rata Gobal Anthony",
"url": "https://github.com/OresteVisari/EPub-Reader"
},
"default_locale": "en",
"permissions": {
"device-storage: sdcard": {
"description": "Required to import books from the SD card",
"access": "readonly"
},
"storage": {
"description": "Required to store imported books"
}
},
"activities": {
"epub-reader": {
"href": "./index.html",
"disposition": "inline",
"filters": {
"type": ["application/zip","application/epub"]
},
"returnValue": true
}
}
}