Ethereum Swarm Extension
Web3 framework for Ethereum Swarm dApps
Ethereum Swarm Extension là gì?
Ethereum Swarm Extension là một tiện ích mở rộng Chrome được phát triển bởi https://ethswarm.org, và tính năng chính của nó là "Web3 framework for Ethereum Swarm dApps".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Ethereum Swarm Extension
Tải xuống các tệp mở rộng Ethereum Swarm Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ethereum Swarm Extension |
ID | afpgelfcknfbbfnipnomfdbbnbbemnia |
URL Chính Thức | https://chromewebstore.google.com/detail/ethereum-swarm-extension/afpgelfcknfbbfnipnomfdbbnbbemnia |
Mô tả | Web3 framework for Ethereum Swarm dApps |
Kích Thước Tệp | 5.28 MB |
Số Lần Cài Đặt | 78 |
Phiên Bản Hiện Tại | 0.7.1 |
Cập Nhật Lần Cuối | 2022-11-24 |
Ngày Phát Hành | 2021-11-14 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://ethswarm.org |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ethersphere/swarm-extension |
URL Trang Trợ Giúp | https://github.com/ethersphere/swarm-extension/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/ethersphere/swarm-extension/blob/master/PRIVACY_POLICY.md |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*:\/\/*\/*" ] } |