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!                    

擴展基本資訊

名稱 ENS Content Resolver ENS Content Resolver
ID ifgfopmoihnnicfgcpafgibiinfkodjf
官方網址 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": [
        "*"
    ]
}