ENS Content Resolver

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

Co je ENS Content Resolver?

ENS Content Resolver je rozšíření Chrome vyvinuté http://monkybrain.com, a jeho hlavní funkcí je „Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření ENS Content Resolver

Stáhněte si soubory rozšíření ENS Content Resolver ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název ENS Content Resolver ENS Content Resolver
ID ifgfopmoihnnicfgcpafgibiinfkodjf
Oficiální URL https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf
Popis Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
Velikost souboru 403 KB
Počet instalací 161
Aktuální Verze 0.1
Poslední Aktualizace 2017-12-15
Datum Vydání 2017-12-15
Vývojář http://monkybrain.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/monkybrain/ens-content-resolver
Podporované Jazyky 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": [
        "*"
    ]
}