Frame Companion

Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.

ما هو Frame Companion؟

Frame Companion هو إضافة Chrome تم تطويرها بواسطة https://frame.sh، والميزة الرئيسية لها هي "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Frame Companion

قم بتنزيل ملفات الامتداد Frame Companion بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Frame companion extension to be used with Frame, https://frame.sh.

This extension injects a connection to Frame (a native Ethereum wallet on your desktop) into browser-based apps that do not know how to connect to Frame directly.

Visit https://frame.sh to download Frame!                    

معلومات أساسية عن التمديد

الاسم Frame Companion Frame Companion
ID ldcoohedfbjoobcadoglnnmmfbdlmmhf
عنوان URL الرسمي https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf
الوصف Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
حجم الملف 1.39 MB
عدد التثبيتات 9,528
النسخة الحالية 0.10.3
آخر تحديث 2023-07-31
تاريخ النشر 2019-12-06
تقييم 5.00/5 مجموع تقييمات 12
المطور https://frame.sh
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://frame.sh
عنوان صفحة المساعدة https://feedback.frame.sh
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Frame Companion",
    "version": "0.10.3",
    "manifest_version": 2,
    "description": "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.",
    "homepage_url": "https:\/\/github.com\/floating\/frame",
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "browser_action": {
        "default_title": "Frame Companion",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "96": "icons\/icon96.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "augment.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "idle"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png"
    }
}