Impersonator

Impersonator

Impersonatorとは何ですか?

Impersonatorはapoorvlatheyによって開発されたChromeの拡張機能で、その主な機能は「Impersonator」です。

拡張機能のスクリーンショット

screenshot
screenshot

Impersonator拡張機能のCRXファイルをダウンロード

Impersonator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Browser extension that enables you to Log-in as ANY Ethereum address on ALL dapps!

⚒️ Installation and Usage instructions available here: https://github.com/apoorvlathey/impersonator-extension#impersonator-extension

✨ Features:
- No private keys are required
- Connect address to DApps in "watch-only" mode
- Works with all VM chains like Ethereum, Arbitrum, Optimism, Polygon, BSC, and various testnets as well.
- Easily input addresses via ENS
- Dynamically switch connected address and network, after being connected to a dapp.
- Unique feature that differentiates it from other wallets: You can have different address & chain injected in different browser tabs at the same time!

📝 Impersonator injects into the dapps just like Metamask, but gives you the freedom to set custom address which tricks the dapp into thinking you own that address.                    

拡張機能の基本情報

名前 Impersonator Impersonator
ID hgihfkmoibhccfdohjdbklmmcknjjmgl
公式URL https://chromewebstore.google.com/detail/impersonator/hgihfkmoibhccfdohjdbklmmcknjjmgl
説明 Impersonator
ファイルサイズ 1.45 MB
インストール数 1,603
現在のバージョン 0.1.1
最終更新日 2022-10-02
公開日 2022-10-02
評価 5.00/5 合計 4 レビュー
開発者 apoorvlathey
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.impersonator.xyz/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Impersonator",
    "version": "0.1.1",
    "manifest_version": 3,
    "description": "Impersonator",
    "homepage_url": "https:\/\/impersonator.xyz",
    "action": {
        "default_title": "Impersonator",
        "default_icon": {
            "128": ".\/icons\/icon128.png"
        },
        "default_popup": "index.html"
    },
    "icons": {
        "128": ".\/icons\/icon128.png",
        "48": ".\/icons\/icon48.png",
        "16": ".\/icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "static\/js\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/js\/impersonator.js"
            ],
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}