TresConnect MetaMask Impersonator
Impersonate any wallet on any dApp
TresConnect MetaMask Impersonatorคืออะไร?
TresConnect MetaMask Impersonator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tres.finance และคุณลักษณะหลักของมันคือ "Impersonate any wallet on any dApp"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TresConnect MetaMask Impersonator
ดาวน์โหลดไฟล์ส่วนขยาย TresConnect MetaMask Impersonator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# TL;DR
Get read-only wallet data from any DeFi app
# What does the extension do?
Not all DeFi apps support viewing data such as balances and rewards without connecting a wallet.
Now you can!
TresConnect enables you to connect to any DeFi app using any wallet address you insert, for read only information.
(e.g. can only view, not sign messages / transactions)
# Known limitations
Does not support apps that require signing a message for login.
# Requirements
You must have a MetaMask installed, as this extension changes the results returned from MetaMask when an app asks for the current connected address.
# Github Repository
https://github.com/Tres-Finance/tres-connect ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | dcncbippcdfiljhcfpdieipdjfjoaihl |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tresconnect-metamask-impe/dcncbippcdfiljhcfpdieipdjfjoaihl |
| คำอธิบาย | Impersonate any wallet on any dApp |
| ขนาดไฟล์ | 505 KB |
| จำนวนการติดตั้ง | 432 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2022-08-23 |
| วันที่เผยแพร่ | 2022-08-18 |
| คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
| ผู้พัฒนา | https://tres.finance |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://tres.finance |
| URL หน้าช่วยเหลือ | https://tres.finance |
| URL หน้านโยบายความเป็นส่วนตัว | https://www.tres.finance/terms-of-use |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TresConnect MetaMask Impersonator",
"description": "Impersonate any wallet on any dApp",
"version": "1.0",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Impersonate any wallet on any dApp"
},
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
".\/static\/js\/content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"service_worker": ".\/static\/js\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"\/static\/js\/inpage.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"permissions": [
"activeTab",
"tabs",
"scripting",
"storage",
"webNavigation"
]
} | |