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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |