ENS Content Resolver

ENS Content Resolver

Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ENS Content Resolver",
  "description": "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.",
  "version": "0.1",
  "browser_action": {
    "default_icon": "res/ens_512x512.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "512": "res/ens_512x512.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "webRequest",
    "*://*.eth/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "*"
  ]
}