Echo Bridge
The bridge between your web site and the Echo
Echo Bridge là gì?
Echo Bridge là một tiện ích mở rộng Chrome được phát triển bởi pixelplex, và tính năng chính của nó là "The bridge between your web site and the Echo".
Ả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 Echo Bridge
Tải xuống các tệp mở rộng Echo Bridge 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
Bridge is a tool designed to make running Echo dApps for people as easy as possible. As an extension for your browser, Bridge can act as a dedicated Echo wallet, allowing you to access and manage your account data, manage multiple accounts, and use it for making, signing transactions & viewing your account history.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Echo Bridge |
ID | ginklfodpcgldnicehmlpehfmgjhbdcl |
URL Chính Thức | https://chromewebstore.google.com/detail/echo-bridge/ginklfodpcgldnicehmlpehfmgjhbdcl |
Mô tả | The bridge between your web site and the Echo |
Kích Thước Tệp | 13.89 MB |
Số Lần Cài Đặt | 19 |
Phiên Bản Hiện Tại | 1.18.4 |
Cập Nhật Lần Cuối | 2022-10-13 |
Ngày Phát Hành | 2020-04-21 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | pixelplex |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/19ZPZQSLGRZ5ObIvDzAT1tLYHwUpaZZgT/edit |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "BRG", "name": "Echo Bridge", "description": "The bridge between your web site and the Echo", "manifest_version": 2, "browser_action": { "default_popup": ".\/index.html", "default_title": "Echo Bridge", "default_icon": { "16": "images\/16.png", "32": "images\/32.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "96": "images\/96.png", "128": "images\/128.png" }, "version": "1.18.4", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/content.js" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "storage", "clipboardWrite", "notifications", "activeTab" ], "web_accessible_resources": [ "inpage.js", "background.js", "unlimitedStorage.js" ] } |