Do not resolve .test domains using ENS

feature/default_network_editable
bitpshr 6 years ago
parent dae07b32e5
commit 803a79f836
  1. 1
      app/manifest.json
  2. 2
      app/scripts/lib/ipfsContent.js

@ -63,7 +63,6 @@
"activeTab", "activeTab",
"webRequest", "webRequest",
"*://*.eth/", "*://*.eth/",
"*://*.test/",
"notifications" "notifications"
], ],
"web_accessible_resources": [ "web_accessible_resources": [

@ -34,7 +34,7 @@ module.exports = function (provider) {
return { cancel: true } return { cancel: true }
} }
extension.webRequest.onErrorOccurred.addListener(ipfsContent, {urls: ['*://*.eth/', '*://*.test/']}) extension.webRequest.onErrorOccurred.addListener(ipfsContent, {urls: ['*://*.eth/']})
return { return {
remove () { remove () {

Loading…
Cancel
Save