AIN Wallet

A chrome extension for AI Network

AIN Wallet là gì?

AIN Wallet là một tiện ích mở rộng Chrome được phát triển bởi Common Computer, và tính năng chính của nó là "A chrome extension for AI Network".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng AIN 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

                        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.                    

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

Tên AIN Wallet AIN Wallet
ID hbdheoebpgogdkagfojahleegjfkhkpl
URL Chính Thức https://chromewebstore.google.com/detail/ain-wallet/hbdheoebpgogdkagfojahleegjfkhkpl
Mô tả A chrome extension for AI Network
Kích Thước Tệp 1.89 MB
Số Lần Cài Đặt 215
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2020-04-02
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Common Computer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.ainetwork.ai/
URL Trang Chính Sách Bảo Mật https://www.ainetwork.ai/public/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}