From 9da82b1e6a1ba47f8c2429834bb34d9a375357e1 Mon Sep 17 00:00:00 2001 From: rocker Date: Mon, 18 Sep 2023 10:50:34 +0800 Subject: [PATCH] chore: upgraded to 0.1.6 --- CHANGELOG.md | 4 ++++ __dist_src/manifest.json | 2 +- __dist_src/manifestV3.json | 2 +- dist/manifest.json | 2 +- package.json | 2 +- src/contentScripts.ts | 1 + 6 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 248a07e..8b73589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.6 + +- Optimized styles on testnote + ## 0.1.5 - Added switch network logic diff --git a/__dist_src/manifest.json b/__dist_src/manifest.json index d33bbf7..7e5832a 100644 --- a/__dist_src/manifest.json +++ b/__dist_src/manifest.json @@ -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": [ diff --git a/__dist_src/manifestV3.json b/__dist_src/manifestV3.json index eb3946f..b544503 100644 --- a/__dist_src/manifestV3.json +++ b/__dist_src/manifestV3.json @@ -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", diff --git a/dist/manifest.json b/dist/manifest.json index 7789142..7e5832a 100644 --- a/dist/manifest.json +++ b/dist/manifest.json @@ -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": [ diff --git a/package.json b/package.json index e6de928..31b5fb5 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/contentScripts.ts b/src/contentScripts.ts index b809765..83bd19b 100644 --- a/src/contentScripts.ts +++ b/src/contentScripts.ts @@ -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");