TresConnect MetaMask Impersonator
Impersonate any wallet on any dApp
TresConnect MetaMask Impersonator क्या है?
TresConnect MetaMask Impersonator https://tres.finance द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Impersonate any wallet on any dApp"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TresConnect MetaMask Impersonator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
# 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 |
आधिकारिक 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" ] } |