From a22b961848e00c06e08299c2b9a52d7d91d98ff8 Mon Sep 17 00:00:00 2001 From: Will O'Beirne Date: Mon, 29 Apr 2019 13:07:17 -0400 Subject: [PATCH] Version 0.5.1 --- package.json | 2 +- static/manifest.json | 41 +++++++++++++---------------------------- 2 files changed, 14 insertions(+), 29 deletions(-) diff --git a/package.json b/package.json index d8d14ebc..518958e9 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "joule-extension", - "version": "0.5.0", + "version": "0.5.1", "description": "Lightning charge your browser by connecting your lightning node", "homepage": "https://lightningjoule.com", "bugs": "https://github.com/joule-labs/joule-extension/issues", diff --git a/static/manifest.json b/static/manifest.json index d0866b94..3eec902b 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Joule", "description": "Make payments and use your Lightning identity in the browser", - "version": "0.5.0", + "version": "0.5.1", "icons": { "16": "icon16.png", "48": "icon48.png", @@ -19,36 +19,21 @@ "page": "options.html", "open_in_tab": true }, - "content_scripts": [{ - "matches": [ - "file://*/*", - "http://*/*", - "https://*/*" - ], - "js": ["content_script.js"], - "run_at": "document_start", - "all_frames": true - }], + "content_scripts": [ + { + "matches": ["file://*/*", "http://*/*", "https://*/*"], + "js": ["content_script.js"], + "run_at": "document_start", + "all_frames": true + } + ], "background": { - "scripts": [ - "background_script.js" - ], + "scripts": ["background_script.js"], "persistent": true }, - "web_accessible_resources": [ - "inpage_script.js" - ], - "permissions": [ - "storage", - "clipboardWrite", - "activeTab", - "contextMenus" - ], - "optional_permissions": [ - "notifications", - "http://*/", - "https://*/" - ], + "web_accessible_resources": ["inpage_script.js"], + "permissions": ["storage", "clipboardWrite", "activeTab", "contextMenus"], + "optional_permissions": ["notifications", "http://*/", "https://*/"], "applications": { "gecko": { "id": "joule@lightningjoule.com",