ENS Content Resolver

Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.

ENS Content Resolver là gì?

ENS Content Resolver là một tiện ích mở rộng Chrome được phát triển bởi http://monkybrain.com, và tính năng chính của nó là "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng ENS Content Resolver

Tải xuống các tệp mở rộng ENS Content Resolver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ENS Content Resolver ENS Content Resolver
ID ifgfopmoihnnicfgcpafgibiinfkodjf
URL Chính Thức https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf
Mô tả Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
Kích Thước Tệp 403 KB
Số Lần Cài Đặt 161
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-12-15
Ngày Phát Hành 2017-12-15
Nhà Phát Triển http://monkybrain.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/monkybrain/ens-content-resolver
Ngôn Ngữ Được Hỗ Trợ 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": [
        "*"
    ]
}