Frame Companion

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

Was ist Frame Companion?

Frame Companion ist eine Chrome-Erweiterung, die von https://frame.sh entwickelt wurde, und ihr Hauptmerkmal ist "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".

Erweiterungsscreenshots

screenshot
screenshot

Frame Companion-Erweiterungs-CRX-Datei herunterladen

Laden Sie Frame Companion-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Frame Companion Frame Companion
ID ldcoohedfbjoobcadoglnnmmfbdlmmhf
Offizielle URL https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf
Beschreibung Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Dateigröße 1.39 MB
Installationsanzahl 9,528
Aktuelle Version 0.10.3
Letztes Update 2023-07-31
Veröffentlichungsdatum 2019-12-06
Bewertung 5.00/5 Insgesamt 12 Bewertungen
Entwickler https://frame.sh
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://frame.sh
Hilfeseite URL https://feedback.frame.sh
Unterstützte Sprachen 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"
    }
}