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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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'"
    }
}