Impersonator
Impersonator
什麼是Impersonator?
Impersonator是由apoorvlathey開發的Chrome擴展程式,該擴展的主要功能是“Impersonator”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | hgihfkmoibhccfdohjdbklmmcknjjmgl |
| 官方網址 | 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 |
| 電子郵箱 | [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:\/\/*\/*"
]
}
]
} | |