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".
Снимки экрана расширения
Скачать файл 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 |
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": [ "*:\/\/*\/*" ] } |