Wallet Guardian
Wallet Guardian
Τι είναι το Wallet Guardian;
Το Wallet Guardian είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://gbc.ai, και η κύρια λειτουργία του είναι "Wallet Guardian".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Wallet Guardian
Λήψη αρχείων επέκτασης Wallet Guardian σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Crypto Scam Protection. We are not providing you with a wallet; we are protecting your wallet. Wallet Guardian scans tokens and smart contracts in seconds with NO Wallet connections or permissions. How to use: Install the Wallet Guardian desktop browser extension, and that's all you need to do. There is no setup and no connections or permissions. We don't take any data from your wallet; we don't have access to your tokens. When you use the MetaMask desktop browser extension with all decentralised exchanges or aggregators (swap applications such as Uniswap, Pancake and 1inch), Wallet Guardian will scan the token you want to swap to for scams and threats in a few seconds. What you will see: Once you click Swap, the Wallet Guardian browser extension will open automatically; you have nothing to do, and scanning the token smart contract (Ethereum - ERC20 and BNB Chain- BEP20) will start automatically. You will see the result in a few seconds as a colour RED for STOP, YELLOW for ATTENTION and GREEN for CLEAR. It is then up to you if you decide to reject or confirm in MetaMask. You choose, but we always recommend you do your own research as the decision and responsibility are solely yours. We hope you like this first version of Wallet Guardian, and we will release NFT scanning and more Blockchain networks soon. Mobile versions will follow. Please come and join our Guardians of the Blockchain - GBC.AI Telegram community and let us know what you think and would like to see: https://t.me/gbc_ai Find out more here: https://gbc.ai/
Βασικές Πληροφορίες Επέκτασης
Όνομα | Wallet Guardian |
ID | ooiepdgjjnhcmlaobfinbomgebfgablh |
Επίσημο URL | https://chromewebstore.google.com/detail/wallet-guardian/ooiepdgjjnhcmlaobfinbomgebfgablh |
Περιγραφή | Wallet Guardian |
Μέγεθος Αρχείου | 531 KB |
Αριθμός Εγκαταστάσεων | 4,568 |
Τρέχουσα Έκδοση | 0.0.7 |
Τελευταία Ενημέρωση | 2023-04-17 |
Ημερομηνία Δημοσίευσης | 2022-10-26 |
Αξιολόγηση | 5.00/5 Συνολικά 42 Αξιολογήσεις |
Προγραμματιστής | https://gbc.ai |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://gbc.ai/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://share-eu1.hsforms.com/1VY9hRM8kQb-muwDodR0ILAf7qq7 |
URL της Σελίδας Πολιτικής Απορρήτου | https://gbc.ai/terms-of-use |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wallet Guardian", "description": "Wallet Guardian", "version": "0.0.7", "action": { "default_title": "Click to view a popup", "default_popup": "index.html", "default_icon": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" } }, "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/wg.gbc.ai\/api" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ], "externally_connectable": { "ids": [ "*" ] }, "web_accessible_resources": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "injected.js" ] } ] } |