Impersonator
Impersonator
Τι είναι το Impersonator;
Το Impersonator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον apoorvlathey, και η κύρια λειτουργία του είναι "Impersonator".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Impersonator
Λήψη αρχείων επέκτασης 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 |
| Επίσημο 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 |
| Ηλεκτρονικό ταχυδρομείο | [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:\/\/*\/*"
]
}
]
} | |