Frame Companion
Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Vad är Frame Companion?
Frame Companion är en Chrome-tillägg utvecklad av https://frame.sh, och dess huvudfunktion är "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".
Tilläggsskärmbilder
Ladda ner Frame Companion-förlängningens CRX-fil
Ladda ner Frame Companion-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Frame Companion |
ID | ldcoohedfbjoobcadoglnnmmfbdlmmhf |
Officiell webbadress | https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf |
Beskrivning | Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux. |
Filstorlek | 1.39 MB |
Antal Installationer | 9,528 |
Aktuell Version | 0.10.3 |
Senast Uppdaterad | 2023-07-31 |
Publiceringsdatum | 2019-12-06 |
Betyg | 5.00/5 Totalt 12 Betyg |
Utvecklare | https://frame.sh |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://frame.sh |
Hjälpsida URL | https://feedback.frame.sh |
Stödda Språk | 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" } } |