ENS Content Resolver
Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
What is ENS Content Resolver?
ENS Content Resolver is a Chrome extension developed by http://monkybrain.com, and its main feature is "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.".
Extension Screenshots
Download ENS Content Resolver Extension CRX File
Download ENS Content Resolver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content. It first tries to serve the content through your local IPFS gateway (localhost:8080). If you don't have a node running it will use the public gateway (gateway.ipfs.io) instead. Currently only supports Infura for connecting to the Ethereum network. Support for local Ethereum nodes will arrive soon, as will support for Swarm. If you like this project, please star it on Github. If you'd like to contribute, even better!
Extension Basic Information
Name | |
ID | ifgfopmoihnnicfgcpafgibiinfkodjf |
Official URL | https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf |
Description | Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content. |
File Size | 403 KB |
Installation Count | 161 |
Current Version | 0.1 |
Last Updated | 2017-12-15 |
Publish Date | 2017-12-15 |
Developer | http://monkybrain.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/monkybrain/ens-content-resolver |
Supported Languages | en |
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": [ "*" ] } |