Skip to content

Commit

Permalink
Version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wbobeirne committed Apr 29, 2019
1 parent 5972c6c commit a22b961
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 29 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
41 changes: 13 additions & 28 deletions static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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": "[email protected]",
Expand Down

0 comments on commit a22b961

Please sign in to comment.