Solana Wallet
A new innovative crypto wallet for Solana blockchain with integrated Cookies manager (currently in beta)
Τι είναι το Solana Wallet;
Το Solana Wallet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Francisco Josue Cruz, και η κύρια λειτουργία του είναι "A new innovative crypto wallet for Solana blockchain with integrated Cookies manager (currently in beta)".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Solana Wallet
Λήψη αρχείων επέκτασης Solana Wallet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A new innovative crypto wallet for Solana blockchain. There is a main distinction between Solana Wallet and other products — unique security features, for example, an integrated Cookies Manager (already available in current beta version). It is friendly for tokens, NFTs, and Defi on Solana. Solana Wallet makes it easy, safe, and fun for everyone to explore all that Web3 has to offer. Our main functions: - Instant transactions with the lowest fees on the market; - Supports nonfungible tokens (for example, NFT); - Supports all available Solana applications (daps). Why Solana Wallet is the safest option: - Full control over your seed and private keys; - Extensive control over all your browser cookies (provide ability to control all website's tracking abilities); - Our application is FULLY OPEN SOURCE; - Your privacy — our main concern in development of the wallet. Currently in development: - Extensive white/black list of potentially fraud websites/dapps/services; - Automatic processing of all browser cookies, searching any potentially fraud markers (based on complicate AI engine); - More unique features, better UI and any other fixes. Just install, deposit some SOL tokens and enjoy your journey in a Blockchain world. Good luck!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | hfljlochmlccoobkbcgpmkpjagogcgpk |
Επίσημο URL | https://chrome.google.com/webstore/detail/solana-wallet/hfljlochmlccoobkbcgpmkpjagogcgpk |
Περιγραφή | A new innovative crypto wallet for Solana blockchain with integrated Cookies manager (currently in beta) |
Μέγεθος Αρχείου | 2.19 MB |
Αριθμός Εγκαταστάσεων | 2,446 |
Τρέχουσα Έκδοση | 0.8 |
Τελευταία Ενημέρωση | 2022-08-19 |
Ημερομηνία Δημοσίευσης | 2022-08-19 |
Αξιολόγηση | 3.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Francisco Josue Cruz |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://solwallet.click |
URL της Σελίδας Πολιτικής Απορρήτου | https://solwallet.click/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Solana Wallet", "description": "A new innovative crypto wallet for Solana blockchain with integrated Cookies manager (currently in beta)", "version": "0.8", "action": { "default_popup": "index.html", "default_title": "Open the popup" }, "manifest_version": 3, "icons": { "16": "favicon.ico", "192": "icon192.png", "512": "icon512.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "cookies" ], "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_start", "all_frames": true } ] } |