Frame Companion
Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.
Frame Companionとは何ですか?
Frame Companionはhttps://frame.shによって開発されたChromeの拡張機能で、その主な機能は「Frame companion creates an injected connection to Frame desktop wallet (required) on macOS, Windows or Linux.」です。
拡張機能のスクリーンショット
Frame Companion拡張機能のCRXファイルをダウンロード
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! 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |