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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |