Titan Wallet Extension

A browser extension wallet for V Systems

什麼是Titan Wallet Extension?

Titan Wallet Extension是由Coded Solution Limited開發的Chrome擴展程式,該擴展的主要功能是“A browser extension wallet for V Systems”。

擴展截圖

screenshot
screenshot
screenshot

下載Titan Wallet Extension擴展crx文件

下載Titan Wallet Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Titan Wallet is a self-custodial crypto wallet for the V Systems(VSYS) Blockchain ecosystem. 

Backed by the V Systems Foundation Team, Titan Wallet is designed to make storing, sending, receiving and in-app leasing and staking tokens to SuperNodes on the V Systems Blockchain. 

The current version (Version 1.2.0) of the Chrome extension allows users to: 

1. Fix the issue about confirming send NFT transaction pop-up;
2.Update V Systems Explorer links and the extension version number.


============================================================================

General Functions

-Create a new wallet or import an existing wallet 
-View VSYS assets in the wallet 
-Send & receive assets from other wallets 
-View activity log and transaction history on your addresses
-Save multiple wallet addresses in the Address Book 
-Manage Custom VSYS Tokens 
-View, Transfer and Receive NFT collections 
-Staking solutions for VSYS (SuperNode Staking) 

============================================================================

Titan Wallet is a self-custodial wallet. The application does not store any information on your funds, your secret phrase or any personal data.                    

擴展基本資訊

名稱 Titan Wallet Extension Titan Wallet Extension
ID bplepbelihejfpcjoeialhjpamgpnfln
官方網址 https://chromewebstore.google.com/detail/titan-wallet-extension/bplepbelihejfpcjoeialhjpamgpnfln
簡介 A browser extension wallet for V Systems
檔案大小 20.48 MB
安裝次數 710
目前版本 1.2.0
更新時間 2024-01-19
上架時間 2022-10-05
開發者 Coded Solution Limited
電子郵箱 [email protected]
付費類型 free
擴展官網 https://titanwallet.app/
說明頁面URL https://v-systems.notion.site/v-systems/Titan-Wallet-Help-Center-200c4ba446ec4ff4846ad69e5208e466
隱私政策頁面URL https://titanwallet.app/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Titan Wallet Extension",
    "version": "1.2.0",
    "description": "A browser extension wallet for V Systems",
    "icons": {
        "16": "static\/icons\/titian_logo.png",
        "19": "static\/icons\/titian_logo.png",
        "38": "static\/icons\/titian_logo.png",
        "48": "static\/icons\/titian_logo.png",
        "128": "static\/icons\/titian_logo.png"
    },
    "action": {
        "default_icon": "static\/icons\/titian_logo.png",
        "default_title": "Titan Wallet Extension",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.main.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inpage.main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}