Frame Companion

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

Qu'est-ce que Frame Companion ?

Frame Companion est une extension Chrome développée par https://frame.sh, et sa fonction principale est "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Frame Companion

Téléchargez les fichiers d'extension Frame Companion au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Frame Companion Frame Companion
ID ldcoohedfbjoobcadoglnnmmfbdlmmhf
URL Officiel https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf
Description Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Taille du Fichier 1.39 MB
Nombre d'Installations 9,528
Version Actuelle 0.10.3
Dernière Mise à Jour 2023-07-31
Date de Publication 2019-12-06
Évaluation 5.00/5 Total 12 Évaluations
Développeur https://frame.sh
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://frame.sh
URL de la Page d'Aide https://feedback.frame.sh
Langues Prises en Charge 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"
    }
}