ENS Content Resolver
Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
什么是ENS Content Resolver?
ENS Content Resolver是由http://monkybrain.com开发的Chrome扩展程序,该扩展的主要功能是“Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.”。
扩展截图
下载ENS Content Resolver扩展crx文件
下载ENS Content Resolver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | |
ID | ifgfopmoihnnicfgcpafgibiinfkodjf |
官方URL | https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf |
简介 | Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content. |
文件大小 | 403 KB |
安装次数 | 161 |
当前版本 | 0.1 |
更新时间 | 2017-12-15 |
上架时间 | 2017-12-15 |
开发者 | http://monkybrain.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/monkybrain/ens-content-resolver |
支持的语言 | 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": [ "*" ] } |