Skip to content

Commit

Permalink
Merge pull request #798 from secretkeylabs/release/v0.29.2
Browse files Browse the repository at this point in the history
release: v0.29.2 to develop
  • Loading branch information
yknl authored Feb 14, 2024
2 parents 43b1b01 + 03b0c56 commit 943aebd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xverse-web-extension",
"description": "A Bitcoin wallet for Web3",
"version": "0.29.1",
"version": "0.29.2",
"private": true,
"engines": {
"node": "^18.18.2"
Expand Down
2 changes: 1 addition & 1 deletion src/content-scripts/content-script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const injectInPageScript = (isPriority) => {
inpage.src = chrome.runtime.getURL('inpage.js');
inpage.id = 'xverse-wallet-provider';
inpage.setAttribute('data-is-priority', isPriority ? 'true' : '');
document.body.appendChild(inpage);
document.head.appendChild(inpage);
};

getIsPriorityWallet()
Expand Down
1 change: 1 addition & 0 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
},
"content_scripts": [
{
"run_at": "document_start",
"js": ["browser-polyfill.js", "content-script.js"],
"matches": ["*://*/*"],
"all_frames": true
Expand Down

0 comments on commit 943aebd

Please sign in to comment.