Fix document extension check when injecting web3

feature/default_network_editable
Whymarrh Whitby 6 years ago
parent 8c33c018de
commit d44b7ef3da
  1. 19
      app/scripts/contentscript.js

@ -135,17 +135,22 @@ function doctypeCheck () {
} }
/** /**
* Checks the current document extension * Returns whether or not the extension (suffix) of the current document is prohibited
* *
* @returns {boolean} {@code true} if the current extension is not prohibited * This checks {@code window.location.pathname} against a set of file extensions
* that should not have web3 injected into them. This check is indifferent of query parameters
* in the location.
*
* @returns {boolean} whether or not the extension of the current document is prohibited
*/ */
function suffixCheck () { function suffixCheck () {
var prohibitedTypes = ['xml', 'pdf'] const prohibitedTypes = [
var currentUrl = window.location.href /\.xml$/,
var currentRegex /\.pdf$/,
]
const currentUrl = window.location.pathname
for (let i = 0; i < prohibitedTypes.length; i++) { for (let i = 0; i < prohibitedTypes.length; i++) {
currentRegex = new RegExp(`\\.${prohibitedTypes[i]}$`) if (prohibitedTypes[i].test(currentUrl)) {
if (currentRegex.test(currentUrl)) {
return false return false
} }
} }

Loading…
Cancel
Save