Frame Companion
Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
¿Qué es Frame Companion?
Frame Companion es una extensión de Chrome desarrollada por https://frame.sh, y su función principal es "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Frame Companion
Descarga archivos de extensión Frame Companion en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | Frame Companion |
ID | ldcoohedfbjoobcadoglnnmmfbdlmmhf |
URL Oficial | https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf |
Descripción | Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux. |
Tamaño del Archivo | 1.39 MB |
Cantidad de Instalaciones | 9,528 |
Versión Actual | 0.10.3 |
Última Actualización | 2023-07-31 |
Fecha de Publicación | 2019-12-06 |
Calificación | 5.00/5 Total de 12 Calificaciones |
Desarrollador | https://frame.sh |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://frame.sh |
URL de la Página de Ayuda | https://feedback.frame.sh |
Idiomas Soportados | 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" } } |