Merge pull request #1271 from MetaMask/i1223-InjectIFrames

Inject web3 in iFrames
feature/default_network_editable
Dan Finlay 8 years ago committed by GitHub
commit 903d3aeb7a
  1. 2
      CHANGELOG.md
  2. 2
      app/manifest.json
  3. 2
      app/scripts/contentscript.js

@ -2,6 +2,8 @@
## Current Master
- Inject web3 into loaded iFrames.
## 3.5.1 2017-3-27
- Fix edge case where users were unable to enable the notice button if notices were short enough to not require a scrollbar.

@ -51,7 +51,7 @@
"scripts/contentscript.js"
],
"run_at": "document_start",
"all_frames": false
"all_frames": true
}
],
"permissions": [

@ -73,6 +73,6 @@ function isAllowedSuffix (testCase) {
if (doctype) {
return doctype.name === 'html'
} else {
return false
return true
}
}

Loading…
Cancel
Save