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”。

扩展截图

screenshot
screenshot

下载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                    

扩展基本信息

名称 TresConnect MetaMask Impersonator 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"
    ]
}