Echo Bridge

The bridge between your web site and the Echo

Echo Bridge란 무엇입니까?

Echo Bridge은(는) pixelplex에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The bridge between your web site and the Echo"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Echo Bridge 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Echo Bridge Echo Bridge
ID ginklfodpcgldnicehmlpehfmgjhbdcl
공식 URL https://chromewebstore.google.com/detail/echo-bridge/ginklfodpcgldnicehmlpehfmgjhbdcl
설명 The bridge between your web site and the Echo
파일 크기 13.89 MB
설치 횟수 19
현재 버전 1.18.4
최근 업데이트 2022-10-13
출시 날짜 2020-04-21
평점 5.00/5 총 6 개의 평점
개발자 pixelplex
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/19ZPZQSLGRZ5ObIvDzAT1tLYHwUpaZZgT/edit
지원되는 언어 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"
    ]
}