Skip to content

Commit

Permalink
chore(release): update to v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasGassmann committed Dec 10, 2021
1 parent 55b1107 commit 4509d72
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spire",
"version": "2.3.0",
"version": "2.3.1",
"author": "AirGap",
"homepage": "https://airgap.it/",
"scripts": {
Expand Down
28 changes: 22 additions & 6 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Spire",
"version": "2.3.0",
"version": "2.3.1",
"description": "Spire allows you to interact with Tezos dApps that support the Beacon SDK.",
"icons": {
"16": "assets/icon/spire-logo-16px.png",
Expand All @@ -9,16 +9,32 @@
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"scripts": ["background.js", "runtime.js"],
"scripts": [
"background.js",
"runtime.js"
],
"persistent": true
},
"permissions": ["tabs", "storage", "activeTab", "notifications", "http://*/", "https://*/"],
"permissions": [
"tabs",
"storage",
"activeTab",
"notifications",
"http://*/",
"https://*/"
],
"content_scripts": [
{
"run_at": "document_start",
"all_frames": true,
"matches": ["https://*/*", "http://*/*"],
"js": ["inject.js", "runtime.js"]
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"inject.js",
"runtime.js"
]
}
],
"browser_action": {
Expand All @@ -29,4 +45,4 @@
}
},
"manifest_version": 2
}
}

0 comments on commit 4509d72

Please sign in to comment.