TresConnect MetaMask Impersonator
Impersonate any wallet on any dApp
什麼是TresConnect MetaMask Impersonator?
TresConnect MetaMask Impersonator是由https://tres.finance開發的Chrome擴展程式,該擴展的主要功能是“Impersonate any wallet on any dApp”。
擴展截圖
下載TresConnect MetaMask Impersonator擴展crx文件
下載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
擴展基本資訊
名稱 | TresConnect MetaMask Impersonator |
ID | dcncbippcdfiljhcfpdieipdjfjoaihl |
官方網址 | 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" ] } |