Frame Companion

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

Frame Companion là gì?

Frame Companion là một tiện ích mở rộng Chrome được phát triển bởi https://frame.sh, và tính năng chính của nó là "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Frame Companion

Tải xuống các tệp mở rộng Frame Companion dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Frame Companion Frame Companion
ID ldcoohedfbjoobcadoglnnmmfbdlmmhf
URL Chính Thức https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf
Mô tả Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Kích Thước Tệp 1.39 MB
Số Lần Cài Đặt 9,528
Phiên Bản Hiện Tại 0.10.3
Cập Nhật Lần Cuối 2023-07-31
Ngày Phát Hành 2019-12-06
Đánh Giá 5.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển https://frame.sh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://frame.sh
URL Trang Trợ Giúp https://feedback.frame.sh
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}