Skip to content

Commit

Permalink
chore(release): 1.1.0-beta.1
Browse files Browse the repository at this point in the history
# [1.1.0-beta.1](v1.0.0...v1.1.0-beta.1) (2023-03-07)

### Features

* import a wallet ([#2](#2)) ([d2b7549](d2b7549))
  • Loading branch information
agoralabs-bot committed Mar 7, 2023
1 parent d2b7549 commit c710ba6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 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.1](https://github.com/agoralabs-sh/agora-wallet-browser-extension/compare/v1.0.0...v1.1.0-beta.1) (2023-03-07)


### Features

* import a wallet ([#2](https://github.com/agoralabs-sh/agora-wallet-browser-extension/issues/2)) ([d2b7549](https://github.com/agoralabs-sh/agora-wallet-browser-extension/commit/d2b7549ecb321a4733331f94c1304272c34f93af))

# 1.0.0 (2023-03-01)


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/agora-wallet-browser-extension",
"version": "1.0.0",
"version": "1.1.0-beta.1",
"description": "An Algorand wallet browser extension to sign data, send transactions and rekey with another account.",
"main": "build/main.js",
"repository": {
Expand Down
22 changes: 16 additions & 6 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"manifest_version": 2,
"name": "Agora Wallet",
"version": "1.0.0",
"version": "1.1.0-beta.1",
"description": "An Algorand wallet browser extension to sign data, send transactions and rekey with another account.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": ["storage"],
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
Expand All @@ -17,14 +19,22 @@
"default_title": "Agora Wallet"
},
"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": ["agora-wallet.js"]
"web_accessible_resources": [
"agora-wallet.js"
]
}

0 comments on commit c710ba6

Please sign in to comment.