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
Основная информация о расширении
Название | 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" ] } |