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" } } |