ENS Content Resolver

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

Hvad er ENS Content Resolver?

ENS Content Resolver er en Chrome-udvidelse udviklet af http://monkybrain.com, og dens hovedfunktion er "Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.".

Udvidelsesskærmbilleder

Download ENS Content Resolver-udvidelses-CRX-fil

Download ENS Content Resolver-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn ENS Content Resolver ENS Content Resolver
ID ifgfopmoihnnicfgcpafgibiinfkodjf
Officiel URL https://chrome.google.com/webstore/detail/ens-content-resolver/ifgfopmoihnnicfgcpafgibiinfkodjf
Beskrivelse Resolves ENS domains (.eth) to IPFS hashes and redirects your browser to the content.
Filstørrelse 403 KB
Antal Installationer 161
Nuværende Version 0.1
Senest Opdateret 2017-12-15
Udgivelsesdato 2017-12-15
Udvikler http://monkybrain.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/monkybrain/ens-content-resolver
Understøttede Sprog 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": [
        "*"
    ]
}