Ethereum Swarm Extension
Web3 framework for Ethereum Swarm dApps
Co to jest Ethereum Swarm Extension?
Ethereum Swarm Extension to rozszerzenie Chrome opracowane przez https://ethswarm.org, a jego główną funkcją jest „Web3 framework for Ethereum Swarm dApps”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Ethereum Swarm Extension
Pobierz pliki rozszerzeń Ethereum Swarm Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | afpgelfcknfbbfnipnomfdbbnbbemnia |
| Oficjalny URL | https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia |
| Opis | Web3 framework for Ethereum Swarm dApps |
| Rozmiar pliku | 5.28 MB |
| Liczba instalacji | 78 |
| Aktualna Wersja | 0.7.1 |
| Ostatnia Aktualizacja | 2022-11-24 |
| Data Publikacji | 2021-11-14 |
| Ocena | 5.00/5 Łącznie 4 Oceny |
| Deweloper | https://ethswarm.org |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/ethersphere/swarm-extension |
| Adres URL Strony Pomocy | https://github.com/ethersphere/swarm-extension/issues |
| Adres URL Strony Polityki Prywatności | https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md |
| Obsługiwane Języki | 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": [
"*:\/\/*\/*"
]
} | |