Skip to content

Commit

Permalink
Version v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ConfluxBot committed Mar 12, 2020
1 parent 207c47c commit 13b3235
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Current Develop Branch

## 0.0.9 Thu Mar 12 2020

## 0.0.8 Tue Feb 20 2020
- update/cleanup packages (#46)
- update readme.md (#45)
Expand Down
40 changes: 31 additions & 9 deletions app/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"version": "0.0.8",
"version": "0.0.9",
"manifest_version": 2,
"author": "https://conflux-chain.org",
"description": "__MSG_appDescription__",
Expand Down Expand Up @@ -32,7 +32,11 @@
},
"default_locale": "en",
"background": {
"scripts": ["chromereload.js", "bg-libs.js", "background.js"],
"scripts": [
"chromereload.js",
"bg-libs.js",
"background.js"
],
"persistent": true
},
"browser_action": {
Expand All @@ -50,14 +54,24 @@
},
"content_scripts": [
{
"matches": ["file://*/*", "http://*/*", "https://*/*"],
"js": ["contentscript.js"],
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["*://connect.trezor.io/*/popup.html"],
"js": ["vendor/trezor/content-script.js"]
"matches": [
"*://connect.trezor.io/*/popup.html"
],
"js": [
"vendor/trezor/content-script.js"
]
}
],
"permissions": [
Expand All @@ -72,9 +86,17 @@
"*://*.eth/",
"notifications"
],
"web_accessible_resources": ["inpage.js", "phishing.html"],
"web_accessible_resources": [
"inpage.js",
"phishing.html"
],
"externally_connectable": {
"matches": ["https://metamask.io/*", "https://conflux-chain.org/*"],
"ids": ["*"]
"matches": [
"https://metamask.io/*",
"https://conflux-chain.org/*"
],
"ids": [
"*"
]
}
}

0 comments on commit 13b3235

Please sign in to comment.