diff options
-rw-r--r-- | manifest.webapp | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/manifest.webapp b/manifest.webapp index 65d9ec6..cbd931a 100644 --- a/manifest.webapp +++ b/manifest.webapp @@ -1,17 +1,25 @@ { - "version": "6", + "version": "7", "name": "Import LDIF", "description": "Import LDIF file from the remote URL to Firefox OS Contacts application", - "icons": { - "128": "/icon-128.png", - "60": "/icon-60.png" - }, - "launch_path": "/index.html", "type": "privileged", "developer": { "name": "Matěj Cepl", "url": "http://matej.ceplovi.cz" }, + "activities": { + "open": { + "filters": { + "type": "text/x-ldif", + "text/x-ldif": { + "required": true, + "fileExtension": "ldif" + } + }, + "disposition": "inline", + "href": "/index.html" + } + }, "permissions": { "contacts": { "access": "readwrite", |