Frame Companion
Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Что такое Frame Companion?
Frame Companion - это расширение Chrome, разработанное https://frame.sh, и его основная функция - "Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.".
Снимки экрана расширения
Скачать файл CRX расширения Frame Companion
Скачайте файлы расширений Frame Companion в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | Frame Companion |
ID | ldcoohedfbjoobcadoglnnmmfbdlmmhf |
Официальный URL | https://chromewebstore.google.com/detail/frame-companion/ldcoohedfbjoobcadoglnnmmfbdlmmhf |
Описание | Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux. |
Размер файла | 1.39 MB |
Количество установок | 9,528 |
Текущая Версия | 0.10.3 |
Последнее Обновление | 2023-07-31 |
Дата публикации | 2019-12-06 |
Рейтинг | 5.00/5 Всего 12 оценок |
Разработчик | https://frame.sh |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://frame.sh |
URL страницы помощи | https://feedback.frame.sh |
Поддерживаемые языки | 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" } } |