Nifty Wallet

Ethereum Browser Extension

Nifty Wallet là gì?

Nifty Wallet là một tiện ích mở rộng Chrome được phát triển bởi POA Network, và tính năng chính của nó là "Ethereum Browser Extension".

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

screenshot
screenshot
screenshot

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

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

                        An Ethereum Wallet Browser Extension

Nifty Wallet provides the ability to access and interact with Ethereum based distributed applications (dApps) using a web browser.  Users can approve payment for dApp related purchases and services, send and receive funds, and monitor their tokens all within the context of an Ethereum-based web3 environment.  

In the secure Nifty Wallet interface, users can create and manage wallet accounts and interact with their Ether and other ERC20 tokens. Wallet functionality includes the ability to:

- Initiate token transactions to other addresses (wallets or smart contracts)
- View ERC20 token balances, add custom tokens
- Interact with smart contracts
- Import wallet accounts
- Connect to hardware wallets (Ledger and Trezor)

In addition to supporting the Ethereum mainnet chain and Ethereum test networks, Nifty wallet also offers native support for the POA network, xDai Network, and Ethereum Classic. Users can also connect to other EVM blockchains using the custom RPC feature.

Nifty wallet was originally built using a forked version of MetaMask, and has since undergone various customizations to provide an optimized user interface and the ability to manage smart contract operations such as multi-signature wallet operations. This code for this open source project is available at: https://github.com/poanetwork/nifty-wallet                    

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

Tên Nifty Wallet Nifty Wallet
ID jbdaocneiiinmjbjlgalhcelgbejmnid
URL Chính Thức https://chrome.google.com/webstore/detail/nifty-wallet/jbdaocneiiinmjbjlgalhcelgbejmnid
Mô tả Ethereum Browser Extension
Kích Thước Tệp 16.84 MB
Số Lần Cài Đặt 8,000
Phiên Bản Hiện Tại 5.2.6
Cập Nhật Lần Cuối 2021-09-21
Ngày Phát Hành 2020-06-19
Đánh Giá 4.26/5 Tổng số 27 Đánh Giá
Nhà Phát Triển POA Network
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/poanetwork/nifty-wallet
URL Trang Trợ Giúp https://forum.poa.network/c/nifty-wallet/nifty-support
URL Trang Chính Sách Bảo Mật https://forum.poa.network/privacy
Ngôn Ngữ Được Hỗ Trợ de,en,fr,nl,vi,tr,es,it,pl,sl,cs,ru,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appName__",
    "version": "5.2.6",
    "manifest_version": 2,
    "author": "POA Network",
    "description": "__MSG_appDescription__",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Shift+M",
                "mac": "Alt+Shift+M",
                "chromeos": "Alt+Shift+M",
                "linux": "Alt+Shift+M"
            }
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Nifty Wallet",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/connect.trezor.io\/*\/popup.html"
            ],
            "js": [
                "vendor\/trezor\/content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "clipboardWrite",
        "http:\/\/localhost:8545\/",
        "https:\/\/*.infura.io\/",
        "activeTab",
        "*:\/\/*.eth\/",
        "notifications"
    ],
    "web_accessible_resources": [
        "inpage.js",
        "phishing.html"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/metamask.io\/*"
        ],
        "ids": [
            "*"
        ]
    }
}