ENS Content Resolver
Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
Что такое ENS Content Resolver?
ENS Content Resolver - это расширение Chrome, разработанное http://monkybrain.com, и его основная функция - "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.".
Снимки экрана расширения
Скачать файл CRX расширения ENS Content Resolver
Скачайте файлы расширений 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": [ "*" ] } |