Echo Bridge

The bridge between your web site and the Echo

O que é Echo Bridge?

Echo Bridge é uma extensão do Chrome desenvolvida por pixelplex, e sua principal característica é "The bridge between your web site and the Echo".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Echo Bridge

Baixe arquivos de extensão Echo Bridge no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Echo Bridge Echo Bridge
ID ginklfodpcgldnicehmlpehfmgjhbdcl
URL Oficial https://chromewebstore.google.com/detail/echo-bridge/ginklfodpcgldnicehmlpehfmgjhbdcl
Descrição The bridge between your web site and the Echo
Tamanho do Arquivo 13.89 MB
Contagem de Instalações 19
Versão Atual 1.18.4
Última Atualização 2022-10-13
Data de Publicação 2020-04-21
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor pixelplex
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://docs.google.com/document/d/19ZPZQSLGRZ5ObIvDzAT1tLYHwUpaZZgT/edit
Idiomas Suportados 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"
    ]
}