Frame Companion
Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Cos'è Frame Companion?
Frame Companion è un'estensione di Chrome sviluppata da https://frame.sh, e la sua funzione principale è "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Frame Companion
Scarica i file di estensione Frame Companion in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Frame Companion |
ID | ldcoohedfbjoobcadoglnnmmfbdlmmhf |
URL Ufficiale | https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf |
Descrizione | Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux. |
Dimensione del File | 1.39 MB |
Conteggio Installazioni | 9,528 |
Versione Corrente | 0.10.3 |
Ultimo Aggiornamento | 2023-07-31 |
Data di Pubblicazione | 2019-12-06 |
Valutazione | 5.00/5 Totale 12 Valutazioni |
Sviluppatore | https://frame.sh |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://frame.sh |
URL della Pagina di Aiuto | https://feedback.frame.sh |
Lingue Supportate | 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" } } |