Bittensor Wallet

Manage your Bittensor accounts outside of dapps.

Bittensor Wallet là gì?

Bittensor Wallet là một tiện ích mở rộng Chrome được phát triển bởi Opentensor Foundation, và tính năng chính của nó là "Manage your Bittensor accounts outside of dapps.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bittensor Wallet

Tải xuống các tệp mở rộng Bittensor Wallet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This is a non-custodial TAO wallet created by the Opentensor Foundation. You can use this wallet to:
  - securely store TAO
  - transfer TAO
  - delegate TAO

This extension is not tracking you, or utilizing any form of analytics. It doesn't gather addresses, keys or other personal information.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bittensor Wallet Bittensor Wallet
ID bdgmdoedahdcjmpmifafdhnffjinddgc
URL Chính Thức https://chromewebstore.google.com/detail/bittensor-wallet/bdgmdoedahdcjmpmifafdhnffjinddgc
Mô tả Manage your Bittensor accounts outside of dapps.
Kích Thước Tệp 1.79 MB
Số Lần Cài Đặt 14,988
Phiên Bản Hiện Tại 0.10.2
Cập Nhật Lần Cuối 2024-02-27
Ngày Phát Hành 2023-10-18
Đánh Giá 3.73/5 Tổng số 44 Đánh Giá
Nhà Phát Triển Opentensor Foundation
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bittensor.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Opentensor foundation",
    "description": "Manage your Bittensor accounts outside of dapps.",
    "homepage_url": "https:\/\/github.com\/bittensor\/wallet",
    "name": "Bittensor Wallet",
    "short_name": "bittensor",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "bittensor wallet",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "page.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "version": "0.10.2"
}