Frame Companion

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

Co je Frame Companion?

Frame Companion je rozšíření Chrome vyvinuté https://frame.sh, a jeho hlavní funkcí je „Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Frame Companion

Stáhněte si soubory rozšíření Frame Companion ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Frame Companion Frame Companion
ID ldcoohedfbjoobcadoglnnmmfbdlmmhf
Oficiální URL https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf
Popis Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Velikost souboru 1.39 MB
Počet instalací 9,528
Aktuální Verze 0.10.3
Poslední Aktualizace 2023-07-31
Datum Vydání 2019-12-06
Hodnocení 5.00/5 Celkem 12 Hodnocení
Vývojář https://frame.sh
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://frame.sh
URL Stránky Nápovědy https://feedback.frame.sh
Podporované Jazyky 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"
    }
}