ENS Content Resolver
Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
Cos'è ENS Content Resolver?
ENS Content Resolver è un'estensione di Chrome sviluppata da http://monkybrain.com, e la sua funzione principale è "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ENS Content Resolver
Scarica i file di estensione ENS Content Resolver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | ifgfopmoihnnicfgcpafgibiinfkodjf |
URL Ufficiale | https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf |
Descrizione | Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content. |
Dimensione del File | 403 KB |
Conteggio Installazioni | 161 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2017-12-15 |
Data di Pubblicazione | 2017-12-15 |
Sviluppatore | http://monkybrain.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/monkybrain/ens-content-resolver |
Lingue Supportate | 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": [ "*" ] } |