Ethereum Swarm Extension
Web3 framework for Ethereum Swarm dApps
Co je Ethereum Swarm Extension?
Ethereum Swarm Extension je rozšíření Chrome vyvinuté https://ethswarm.org, a jeho hlavní funkcí je „Web3 framework for Ethereum Swarm dApps“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Ethereum Swarm Extension
Stáhněte si soubory rozšíření Ethereum Swarm Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Ethereum Swarm Extension |
ID | afpgelfcknfbbfnipnomfdbbnbbemnia |
Oficiální URL | https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia |
Popis | Web3 framework for Ethereum Swarm dApps |
Velikost souboru | 5.28 MB |
Počet instalací | 78 |
Aktuální Verze | 0.7.1 |
Poslední Aktualizace | 2022-11-24 |
Datum Vydání | 2021-11-14 |
Hodnocení | 5.00/5 Celkem 4 Hodnocení |
Vývojář | https://ethswarm.org |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ethersphere/swarm-extension |
URL Stránky Nápovědy | https://github.com/ethersphere/swarm-extension/issues |
URL Stránky Zásad Ochrany Soukromí | https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md |
Podporované Jazyky | 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": [ "*:\/\/*\/*" ] } |