Ethereum Swarm Extension

Web3 framework for Ethereum Swarm dApps

What is Ethereum Swarm Extension?

Ethereum Swarm Extension is a Chrome extension developed by https://ethswarm.org, and its main feature is "Web3 framework for Ethereum Swarm dApps".

Extension Screenshots

screenshot

Download Ethereum Swarm Extension Extension CRX File

Download Ethereum Swarm Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Ethereum Swarm Extension Ethereum Swarm Extension
ID afpgelfcknfbbfnipnomfdbbnbbemnia
Official URL https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia
Description Web3 framework for Ethereum Swarm dApps
File Size 5.28 MB
Installation Count 78
Current Version 0.7.1
Last Updated 2022-11-24
Publish Date 2021-11-14
Rating 5.00/5 Total 4 Ratings
Developer https://ethswarm.org
Email [email protected]
Payment Type free
Extension Website https://github.com/ethersphere/swarm-extension
Help Page URL https://github.com/ethersphere/swarm-extension/issues
Privacy Policy Page URL https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md
Supported Languages 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": [
        "*:\/\/*\/*"
    ]
}