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

Commit

Permalink
Version v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ConfluxBot authored and yqrashawn committed Feb 11, 2020
1 parent a8d862a commit ac9490c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## Current Develop Branch

## 0.0.5 Mon Feb 10 2020
- [#7912](https://github.com/MetaMask/metamask-extension/pull/7912): Disable import button for empty string/file
- Fix: release file blob
Expand Down
38 changes: 30 additions & 8 deletions app/manifest.json
Original file line number Diff line number Diff line change
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 ac9490c

Please sign in to comment.