Ethereum Swarm Extension

Web3 framework for Ethereum Swarm dApps

Vad är Ethereum Swarm Extension?

Ethereum Swarm Extension är en Chrome-tillägg utvecklad av https://ethswarm.org, och dess huvudfunktion är "Web3 framework for Ethereum Swarm dApps".

Tilläggsskärmbilder

screenshot

Ladda ner Ethereum Swarm Extension-förlängningens CRX-fil

Ladda ner Ethereum Swarm Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Ethereum Swarm Extension Ethereum Swarm Extension
ID afpgelfcknfbbfnipnomfdbbnbbemnia
Officiell webbadress https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia
Beskrivning Web3 framework for Ethereum Swarm dApps
Filstorlek 5.28 MB
Antal Installationer 78
Aktuell Version 0.7.1
Senast Uppdaterad 2022-11-24
Publiceringsdatum 2021-11-14
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare https://ethswarm.org
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/ethersphere/swarm-extension
Hjälpsida URL https://github.com/ethersphere/swarm-extension/issues
URL till Sekretesspolicy Sidan https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md
Stödda Språk 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": [
        "*:\/\/*\/*"
    ]
}