Impersonator
Impersonator
Was ist Impersonator?
Impersonator ist eine Chrome-Erweiterung, die von apoorvlathey entwickelt wurde, und ihr Hauptmerkmal ist "Impersonator".
Erweiterungsscreenshots
Impersonator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Impersonator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Impersonator |
ID | hgihfkmoibhccfdohjdbklmmcknjjmgl |
Offizielle URL | https://chromewebstore.google.com/detail/impersonator/hgihfkmoibhccfdohjdbklmmcknjjmgl |
Beschreibung | Impersonator |
Dateigröße | 1.45 MB |
Installationsanzahl | 1,603 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2022-10-02 |
Veröffentlichungsdatum | 2022-10-02 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | apoorvlathey |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.impersonator.xyz/ |
Unterstützte Sprachen | 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:\/\/*\/*" ] } ] } |