Merge branch 'master' into hideseedwordsfromlogstate

This commit is contained in:
Dan Finlay 2017-03-28 14:42:24 -07:00 committed by GitHub
commit d2bd6f3913
3 changed files with 17 additions and 3 deletions

View File

@ -3,6 +3,7 @@
## Current Master
- Remove seedWords from UI state dump.
- Inject web3 into loaded iFrames.
## 3.5.1 2017-3-27

View File

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

View File

@ -65,10 +65,10 @@ function setupStreams () {
}
function shouldInjectWeb3 () {
return isAllowedSuffix(window.location.href)
return doctypeCheck() || suffixCheck()
}
function isAllowedSuffix (testCase) {
function doctypeCheck () {
const doctype = window.document.doctype
if (doctype) {
return doctype.name === 'html'
@ -76,3 +76,16 @@ function isAllowedSuffix (testCase) {
return false
}
}
function suffixCheck() {
var prohibitedTypes = ['xml', 'pdf']
var currentUrl = window.location.href
var currentRegex
for (let i = 0; i < prohibitedTypes.length; i++) {
currentRegex = new RegExp(`\.${prohibitedTypes[i]}$`)
if (currentRegex.test(currentUrl)) {
return false
}
}
return true
}