Twetch Wallet
Freedomware™ wallet for crypto and NFTs
什么是Twetch Wallet?
Twetch Wallet是由https://twetch.com开发的Chrome扩展程序,该扩展的主要功能是“Freedomware™ wallet for crypto and NFTs”。
扩展截图
下载Twetch Wallet扩展crx文件
下载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" ] } |