Skip to content

Commit

Permalink
chore(release): 1.1.0-beta.14
Browse files Browse the repository at this point in the history
# [1.1.0-beta.14](v1.1.0-beta.13...v1.1.0-beta.14) (2023-04-26)

### Features

* sign transactions ([#15](#15)) ([6d8e192](6d8e192))
  • Loading branch information
agoralabs-bot committed Apr 26, 2023
1 parent 6d8e192 commit 9878e98
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.1.0-beta.14](https://github.com/agoralabs-sh/kibisis-web-extension/compare/v1.1.0-beta.13...v1.1.0-beta.14) (2023-04-26)


### Features

* sign transactions ([#15](https://github.com/agoralabs-sh/kibisis-web-extension/issues/15)) ([6d8e192](https://github.com/agoralabs-sh/kibisis-web-extension/commit/6d8e192fe81857092d781cd0efd3c282cd4b1106))

# [1.1.0-beta.13](https://github.com/agoralabs-sh/kibisis-web-extension/compare/v1.1.0-beta.12...v1.1.0-beta.13) (2023-04-19)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoralabs-sh/kibisis-web-extension",
"version": "1.1.0-beta.13",
"version": "1.1.0-beta.14",
"description": "An Algorand wallet browser extension to sign data, send transactions and rekey with another account.",
"main": "build/main.js",
"repository": {
Expand Down
18 changes: 13 additions & 5 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Kibisis",
"version": "1.1.0-beta.13",
"version": "1.1.0-beta.14",
"description": "An Algorand wallet browser extension to sign data, send transactions and rekey with another account.",
"icons": {
"48": "icons/icon-48.png",
Expand All @@ -24,14 +24,22 @@
"default_title": "Kibisis"
},
"background": {
"scripts": ["background.js"],
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
]
}
],
"web_accessible_resources": ["wallet-initializer.js"]
"web_accessible_resources": [
"wallet-initializer.js"
]
}

0 comments on commit 9878e98

Please sign in to comment.