Skip to content

Commit

Permalink
Updates firfox version
Browse files Browse the repository at this point in the history
Signed-off-by: kulwindersingh-ant <[email protected]>
  • Loading branch information
kulwindersingh-ant committed May 14, 2024
1 parent 6956a05 commit c56103c
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions src/manifest/firefox.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "5ire Wallet",
"description": "EVM and Substrate combined wallet",
"version": "0.2.1",
"version": "0.2.3",
"manifest_version": 2,
"browser_action": {
"default_popup": "index.html",
Expand All @@ -23,12 +23,19 @@
"<all_urls>"
],
"background": {
"scripts": ["./static/js/background.js"]
"scripts": [
"./static/js/background.js"
]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["./static/js/content.js"],
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"./static/js/content.js"
],
"all_frames": false,
"run_at": "document_end"
}
Expand All @@ -43,4 +50,4 @@
}
},
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; frame-ancestors 'none';"
}
}

0 comments on commit c56103c

Please sign in to comment.