Bittensor Wallet

Manage your Bittensor accounts outside of dapps.

什么是Bittensor Wallet?

Bittensor Wallet是由Opentensor Foundation开发的Chrome扩展程序,该扩展的主要功能是“Manage your Bittensor accounts outside of dapps.”。

扩展截图

screenshot

下载Bittensor Wallet扩展crx文件

下载Bittensor Wallet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Bittensor Wallet Bittensor Wallet
ID bdgmdoedahdcjmpmifafdhnffjinddgc
官方URL https://chromewebstore.google.com/detail/bittensor-wallet/bdgmdoedahdcjmpmifafdhnffjinddgc
简介 Manage your Bittensor accounts outside of dapps.
文件大小 1.79 MB
安装次数 14,988
当前版本 0.10.2
更新时间 2024-02-27
上架时间 2023-10-18
评分 3.73/5 共44次评分
开发者 Opentensor Foundation
电子邮箱 [email protected]
付费类型 free
扩展官网 https://bittensor.com
支持的语言 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"
}