Ethereum Swarm Extension

Web3 framework for Ethereum Swarm dApps

Τι είναι το Ethereum Swarm Extension;

Το Ethereum Swarm Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ethswarm.org, και η κύρια λειτουργία του είναι "Web3 framework for Ethereum Swarm dApps".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Ethereum Swarm Extension

Λήψη αρχείων επέκτασης Ethereum Swarm Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Ethereum Swarm Extension Ethereum Swarm Extension
ID afpgelfcknfbbfnipnomfdbbnbbemnia
Επίσημο URL https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia
Περιγραφή Web3 framework for Ethereum Swarm dApps
Μέγεθος Αρχείου 5.28 MB
Αριθμός Εγκαταστάσεων 78
Τρέχουσα Έκδοση 0.7.1
Τελευταία Ενημέρωση 2022-11-24
Ημερομηνία Δημοσίευσης 2021-11-14
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://ethswarm.org
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ethersphere/swarm-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ethersphere/swarm-extension/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md
Υποστηριζόμενες Γλώσσες 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": [
        "*:\/\/*\/*"
    ]
}