CWallet
CWallet is a browser extension multi cryptocurrency wallet
什么是CWallet?
CWallet是由CWallet开发的Chrome扩展程序,该扩展的主要功能是“CWallet is a browser extension multi cryptocurrency wallet”。
扩展截图
下载CWallet扩展crx文件
下载CWallet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
CWallet extension is a cryptocurrency wallet which allows to store, send and receive coins: Bitcoin, Ethereum & Ethereum tokens, Cardano & Cardano tokens.
The extension also allows to trade on Cardano DEXes (sign cardano transactions to make trades) 扩展基本信息
| 名称 | |
| ID | apnehcjmnengpnmccpaibjmhhoadaico |
| 官方URL | https://chromewebstore.google.com/detail/cwallet/apnehcjmnengpnmccpaibjmhhoadaico |
| 简介 | CWallet is a browser extension multi cryptocurrency wallet |
| 文件大小 | 13.32 MB |
| 安装次数 | 1,797 |
| 当前版本 | 0.1.15 |
| 更新时间 | 2022-04-06 |
| 上架时间 | 2022-01-21 |
| 评分 | 4.00/5 共4次评分 |
| 开发者 | CWallet |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://cwallet.finance/ |
| 帮助页面URL | https://support.cardwallet.fi/ |
| 隐私政策页面URL | https://cardwallet.fi/privacy-policy |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CWallet",
"description": "CWallet is a browser extension multi cryptocurrency wallet",
"version": "0.1.15",
"permissions": [
"storage",
"unlimitedStorage",
"chrome:\/\/favicon\/"
],
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"background": {
"scripts": [
"\/js\/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"38": "icons\/38.png"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"\/js\/content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"js\/injected.js"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
} | |