Frame Companion

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

Co to jest Frame Companion?

Frame Companion to rozszerzenie Chrome opracowane przez https://frame.sh, a jego główną funkcją jest „Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Frame Companion

Pobierz pliki rozszerzeń Frame Companion w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Frame Companion Frame Companion
ID ldcoohedfbjoobcadoglnnmmfbdlmmhf
Oficjalny URL https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf
Opis Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Rozmiar pliku 1.39 MB
Liczba instalacji 9,528
Aktualna Wersja 0.10.3
Ostatnia Aktualizacja 2023-07-31
Data Publikacji 2019-12-06
Ocena 5.00/5 Łącznie 12 Oceny
Deweloper https://frame.sh
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://frame.sh
Adres URL Strony Pomocy https://feedback.frame.sh
Obsługiwane Języki 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"
    }
}