From 9878e98043c83a4eeba0e4f4ff693cd96aa83937 Mon Sep 17 00:00:00 2001 From: agoralabs-bot Date: Wed, 26 Apr 2023 15:25:36 +0000 Subject: [PATCH] chore(release): 1.1.0-beta.14 # [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)) --- CHANGELOG.md | 7 +++++++ package.json | 2 +- src/manifest.json | 18 +++++++++++++----- 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4850022a..4aaeef52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 85f0ad86..c6b7a398 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/manifest.json b/src/manifest.json index 20cd7b0c..907f71b8 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -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", @@ -24,14 +24,22 @@ "default_title": "Kibisis" }, "background": { - "scripts": ["background.js"], + "scripts": [ + "background.js" + ], "persistent": true }, "content_scripts": [ { - "matches": [""], - "js": ["content-script.js"] + "matches": [ + "" + ], + "js": [ + "content-script.js" + ] } ], - "web_accessible_resources": ["wallet-initializer.js"] + "web_accessible_resources": [ + "wallet-initializer.js" + ] }