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 |
| 官方網址 | 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": [
"*:\/\/*\/*"
]
} | |