Ethereum Swarm Extension

Web3 framework for Ethereum Swarm dApps

Cos'è Ethereum Swarm Extension?

Ethereum Swarm Extension è un'estensione di Chrome sviluppata da https://ethswarm.org, e la sua funzione principale è "Web3 framework for Ethereum Swarm dApps".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Ethereum Swarm Extension

Scarica i file di estensione Ethereum Swarm Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Ethereum Swarm users can load decentralised applications in a secure way meanwhile applications that utilize this extension's framework futureset can achieve higher user experience.

For features and up-to-date information, please visit its public GitHub page: https://github.com/ethersphere/swarm-extension                    

Informazioni di Base sull'Estensione

Nome Ethereum Swarm Extension Ethereum Swarm Extension
ID afpgelfcknfbbfnipnomfdbbnbbemnia
URL Ufficiale https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia
Descrizione Web3 framework for Ethereum Swarm dApps
Dimensione del File 5.28 MB
Conteggio Installazioni 78
Versione Corrente 0.7.1
Ultimo Aggiornamento 2022-11-24
Data di Pubblicazione 2021-11-14
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore https://ethswarm.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ethersphere/swarm-extension
URL della Pagina di Aiuto https://github.com/ethersphere/swarm-extension/issues
URL della Pagina della Politica sulla Privacy https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ethereum Swarm Extension",
    "short_name": "Swarm Extension",
    "version": "0.7.1",
    "manifest_version": 3,
    "permissions": [
        "webRequest",
        "declarativeNetRequest",
        "tabs",
        "storage",
        "webNavigation"
    ],
    "author": "nugaon",
    "description": "Web3 framework for Ethereum Swarm dApps",
    "icons": {
        "48": "assets\/swarm.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Swarm Extension",
        "default_popup": "popup-page\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "document-start.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}