Echo Bridge
The bridge between your web site and the Echo
Was ist Echo Bridge?
Echo Bridge ist eine Chrome-Erweiterung, die von pixelplex entwickelt wurde, und ihr Hauptmerkmal ist "The bridge between your web site and the Echo".
Erweiterungsscreenshots
Echo Bridge-Erweiterungs-CRX-Datei herunterladen
Laden Sie Echo Bridge-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ginklfodpcgldnicehmlpehfmgjhbdcl |
| Offizielle URL | https://chromewebstore.google.com/detail/echo-bridge/ginklfodpcgldnicehmlpehfmgjhbdcl |
| Beschreibung | The bridge between your web site and the Echo |
| Dateigröße | 13.89 MB |
| Installationsanzahl | 19 |
| Aktuelle Version | 1.18.4 |
| Letztes Update | 2022-10-13 |
| Veröffentlichungsdatum | 2020-04-21 |
| Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
| Entwickler | pixelplex |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://docs.google.com/document/d/19ZPZQSLGRZ5ObIvDzAT1tLYHwUpaZZgT/edit |
| Unterstützte Sprachen | 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"
]
} | |