diff options
author | Maximilian Krambach <[email protected]> | 2018-04-18 14:38:06 +0000 |
---|---|---|
committer | Maximilian Krambach <[email protected]> | 2018-04-20 13:24:13 +0000 |
commit | 6ab25e40d904007755c5d999bf66ae264236e745 (patch) | |
tree | c9f6bff260f9cc0d7c0466f6caf316ade679c33e /lang/js/manifest.json | |
parent | Merge branch 'master' into javascript-binding (diff) | |
download | gpgme-6ab25e40d904007755c5d999bf66ae264236e745.tar.gz gpgme-6ab25e40d904007755c5d999bf66ae264236e745.zip |
js: encrypt improvement and decrypt method
* Compatibility class gpgme_openpgpjs offers an API that should accept
openpgpjs syntax, throwing errors if a parameter is unexpected/not
implemented
* tried to be more generic in methods
* waiting for multiple answers if 'more' is in the answer
* more consistency checking on sending and receiving
* updated the example extension
--
Diffstat (limited to 'lang/js/manifest.json')
-rw-r--r-- | lang/js/manifest.json | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lang/js/manifest.json b/lang/js/manifest.json index 8bb5c58d..e5e17aa5 100644 --- a/lang/js/manifest.json +++ b/lang/js/manifest.json @@ -4,15 +4,11 @@ "name": "gpgme-json with native Messaging", "description": "This should be able to encrypt a text using gpgme-json", "version": "0.1", - "content_security_policy": "default-src 'self' 'unsafe-eval' filesystem", + "content_security_policy": "default-src 'self' 'unsafe-eval' filesystem:", "browser_action": { "default_icon": "testicon.png", "default_title": "gpgme.js", - "default_popup": "ui.html" + "default_popup": "testapplication_index.html" }, - "permissions": ["nativeMessaging", "activeTab"], - - "background": { - "scripts": [ "dist/gpgmejs.bundle.js"] - } + "permissions": ["nativeMessaging", "activeTab"] } |