Skip to content
This repository has been archived by the owner on Oct 15, 2023. It is now read-only.

Commit

Permalink
chore: upgraded to 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
exrobbie committed Sep 18, 2023
1 parent 9c088c8 commit 9da82b1
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.6

- Optimized styles on testnote

## 0.1.5

- Added switch network logic
Expand Down
2 changes: 1 addition & 1 deletion __dist_src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 2,
"version": "0.1.5",
"version": "0.1.6",
"name": "Soul Wallet",
"description": "Smart contract wallet for Ethereum",
"permissions": [
Expand Down
2 changes: 1 addition & 1 deletion __dist_src/manifestV3.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Soul Wallet",
"description": "Smart contract wallet for Ethereum",
"version": "0.1.5",
"version": "0.1.6",
"action": {
"default_icon": {
"16": "icon-16.png",
Expand Down
2 changes: 1 addition & 1 deletion dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 2,
"version": "0.1.4",
"version": "0.1.6",
"name": "Soul Wallet",
"description": "Smart contract wallet for Ethereum",
"permissions": [
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": "soul-wallet-plugin",
"version": "0.1.5",
"version": "0.1.6",
"description": "Browser extension for soul wallet",
"main": "index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/contentScripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ function injectScript(file, node) {
s.setAttribute("type", "text/javascript");
s.setAttribute("src", file);
th.insertBefore(s, th.children[0]);
th.removeChild(s);
}

injectScript(browser.runtime.getURL("js/inpage.js"), "html");
Expand Down

0 comments on commit 9da82b1

Please sign in to comment.