ENS Content Resolver
Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
O que é ENS Content Resolver?
ENS Content Resolver é uma extensão do Chrome desenvolvida por http://monkybrain.com, e sua principal característica é "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ENS Content Resolver
Baixe arquivos de extensão ENS Content Resolver no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | ifgfopmoihnnicfgcpafgibiinfkodjf |
URL Oficial | https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf |
Descrição | Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content. |
Tamanho do Arquivo | 403 KB |
Contagem de Instalações | 161 |
Versão Atual | 0.1 |
Última Atualização | 2017-12-15 |
Data de Publicação | 2017-12-15 |
Desenvolvedor | http://monkybrain.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/monkybrain/ens-content-resolver |
Idiomas Suportados | 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": [ "*" ] } |