TresConnect MetaMask Impersonator
Impersonate any wallet on any dApp
Cos'è TresConnect MetaMask Impersonator?
TresConnect MetaMask Impersonator è un'estensione di Chrome sviluppata da https://tres.finance, e la sua funzione principale è "Impersonate any wallet on any dApp".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TresConnect MetaMask Impersonator
Scarica i file di estensione TresConnect MetaMask Impersonator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
# 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
Informazioni di Base sull'Estensione
Nome | TresConnect MetaMask Impersonator |
ID | dcncbippcdfiljhcfpdieipdjfjoaihl |
URL Ufficiale | https://chromewebstore.google.com/detail/tresconnect-metamask-impe/dcncbippcdfiljhcfpdieipdjfjoaihl |
Descrizione | Impersonate any wallet on any dApp |
Dimensione del File | 505 KB |
Conteggio Installazioni | 432 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-08-23 |
Data di Pubblicazione | 2022-08-18 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | https://tres.finance |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://tres.finance |
URL della Pagina di Aiuto | https://tres.finance |
URL della Pagina della Politica sulla Privacy | https://www.tres.finance/terms-of-use |
Lingue Supportate | 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" ] } |