1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Allow injection in IFrames + dynamic IFrames

This commit is contained in:
Stefaan Ponnet 2017-03-26 13:57:44 +02:00
parent 1c956bdb62
commit 0faddb2ed2
2 changed files with 2 additions and 2 deletions

View File

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

View File

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