Echo Bridge

The bridge between your web site and the Echo

ما هو Echo Bridge؟

Echo Bridge هو إضافة Chrome تم تطويرها بواسطة pixelplex، والميزة الرئيسية لها هي "The bridge between your web site and the Echo".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Echo Bridge

قم بتنزيل ملفات الامتداد Echo Bridge بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
    ]
}