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
公式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
Eメール [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": [
        "*"
    ]
}