Twetch Wallet
Freedomware™ wallet for crypto and NFTs
Τι είναι το Twetch Wallet;
Το Twetch Wallet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://twetch.com, και η κύρια λειτουργία του είναι "Freedomware™ wallet for crypto and NFTs".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twetch Wallet
Λήψη αρχείων επέκτασης Twetch Wallet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A crypto wallet built for Decentralized Apps & NFTs. Twetch is an extension for signing in and using distributed applications built on the Bitcoin SV (BSV) blockchain. The extension injects code into the website's javascript context so that users can interact with applications, make transactions on the blockchain, and store collectibles. Twetch also lets users create and manage their money via their private keys, so when a decentralized application wants to perform a transaction and write to the blockchain, the user gets a secure interface to review the transaction, before approving or rejecting. The Twetch extension is a private and secure wallet app built for accessibility to web3. Because it adds functionality to the normal browser context, Twetch Wallet requires the permission to read and write to any webpage. Security is the highest priority, and Twetch code is built using the highest standards on the web today.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twetch Wallet |
ID | jaooiolkmfcmloonphpiiogkfckgciom |
Επίσημο URL | https://chromewebstore.google.com/detail/twetch-wallet/jaooiolkmfcmloonphpiiogkfckgciom |
Περιγραφή | Freedomware™ wallet for crypto and NFTs |
Μέγεθος Αρχείου | 3.4 MB |
Αριθμός Εγκαταστάσεων | 1,859 |
Τρέχουσα Έκδοση | 0.1.11 |
Τελευταία Ενημέρωση | 2023-11-17 |
Ημερομηνία Δημοσίευσης | 2021-12-07 |
Αξιολόγηση | 4.84/5 Συνολικά 25 Αξιολογήσεις |
Προγραμματιστής | https://twetch.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://twetch.com |
URL της Σελίδας Πολιτικής Απορρήτου | https://twetch.app/privacypolicy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twetch Wallet", "short_name": "twetch-wallet", "version": "0.1.11", "description": "Freedomware\u2122 wallet for crypto and NFTs", "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'", "icons": { "128": "app-icon.png" }, "permissions": [ "storage", "activeTab" ], "background": { "scripts": [ "app\/background.js" ] }, "browser_action": { "default_title": "Twetch Wallet", "default_popup": "index.html", "default_icon": "app-icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "app\/content-script.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "app\/inpage.js" ] } |