AIN Wallet

A chrome extension for AI Network

什么是AIN Wallet?

AIN Wallet是由Common Computer开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension for AI Network”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载AIN Wallet扩展crx文件

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

扩展使用说明

                        AIN Wallet is a browser extension for the AI Network.

**Manage your assets on AI Network**
AIN Wallet helps users create and manage AI Network accounts,
and displays the assets owned by those accounts.
The assets include not only AIN, the native token of the AI Network,
but also AINFT that will be supported in the near future.

**Connect to AI Network Blockchain**
AIN Wallet also injects web3 API for the AI Network into the webpage,
allowing developers and users to communicate with the AI Network.
Users can prove their identity for DApps by signing a specific message,
and they can easily verify the transaction before rejecting or approving it
when DApps attempt to send transactions to the blockchain.                    

扩展基本信息

名称 AIN Wallet AIN Wallet
ID hbdheoebpgogdkagfojahleegjfkhkpl
官方URL https://chromewebstore.google.com/detail/ain-wallet/hbdheoebpgogdkagfojahleegjfkhkpl
简介 A chrome extension for AI Network
文件大小 1.89 MB
安装次数 215
当前版本 2.1.0
更新时间 2024-02-20
上架时间 2020-04-02
评分 4.60/5 共5次评分
开发者 Common Computer
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.ainetwork.ai/
隐私政策页面URL https://www.ainetwork.ai/public/privacy.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension for AI Network",
    "version": "2.1.0",
    "manifest_version": 3,
    "name": "AIN Wallet",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "inject.bundle.js",
                "icon-128.png",
                "icon-48.png",
                "icon-16.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "permissions": [
        "storage"
    ]
}