Ethereum Swarm Extension
Web3 framework for Ethereum Swarm dApps
什么是Ethereum Swarm Extension?
Ethereum Swarm Extension是由https://ethswarm.org开发的Chrome扩展程序,该扩展的主要功能是“Web3 framework for Ethereum Swarm dApps”。
扩展截图
下载Ethereum Swarm Extension扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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": [
"*:\/\/*\/*"
]
} | |