mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #1271 from MetaMask/i1223-InjectIFrames
Inject web3 in iFrames
This commit is contained in:
commit
903d3aeb7a
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
- Inject web3 into loaded iFrames.
|
||||||
|
|
||||||
## 3.5.1 2017-3-27
|
## 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.
|
- 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"
|
"scripts/contentscript.js"
|
||||||
],
|
],
|
||||||
"run_at": "document_start",
|
"run_at": "document_start",
|
||||||
"all_frames": false
|
"all_frames": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"permissions": [
|
"permissions": [
|
||||||
|
@ -73,6 +73,6 @@ function isAllowedSuffix (testCase) {
|
|||||||
if (doctype) {
|
if (doctype) {
|
||||||
return doctype.name === 'html'
|
return doctype.name === 'html'
|
||||||
} else {
|
} else {
|
||||||
return false
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user