Frame Companion
Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Wat is Frame Companion?
Frame Companion is een Chrome-extensie ontwikkeld door https://frame.sh, en de belangrijkste functie is "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".
Extensie Screenshots
Download het CRX-bestand van de extensie Frame Companion
Download Frame Companion-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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! Basisinformatie over de Extensie
| Naam | |
| ID | ldcoohedfbjoobcadoglnnmmfbdlmmhf |
| Officiële URL | https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf |
| Beschrijving | Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux. |
| Bestandsgrootte | 1.39 MB |
| Aantal Installaties | 9,528 |
| Huidige Versie | 0.10.3 |
| Laatst Bijgewerkt | 2023-07-31 |
| Publicatiedatum | 2019-12-06 |
| Beoordeling | 5.00/5 Totaal 12 Beoordelingen |
| Ontwikkelaar | https://frame.sh |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://frame.sh |
| Help Pagina-URL | https://feedback.frame.sh |
| Ondersteunde Talen | 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"
}
} | |