NFT Helper

NFT Helper

NFT Helper là gì?

NFT Helper là một tiện ích mở rộng Chrome được phát triển bởi https://georgemike.com, và tính năng chính của nó là "NFT Helper".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        NFT Helper overlays NFT collection rarity information over marketplace listings. Use it on:
- Solanart (solanart.io) 
- Magic Eden (magiceden.io).
- FTX (ftx.us)
- OpenSea (opensea.io)

Last updated 6/13/2022                    

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

Tên NFT Helper NFT Helper
ID cebdpnnffiohnkbjicngipfiepffcaoa
URL Chính Thức https://chromewebstore.google.com/detail/nft-helper/cebdpnnffiohnkbjicngipfiepffcaoa
Mô tả NFT Helper
Kích Thước Tệp 664 KB
Số Lần Cài Đặt 718
Phiên Bản Hiện Tại 1.0.21
Cập Nhật Lần Cuối 2024-01-27
Ngày Phát Hành 2021-09-20
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://georgemike.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://georgemike.com
URL Trang Trợ Giúp https://georgemike.com
URL Trang Chính Sách Bảo Mật https://www.georgemike.com/chrome/privacypolicy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "version": "1.0.21",
    "options_page": "options.html",
    "name": "NFT Helper",
    "description": "NFT Helper",
    "default_locale": "en",
    "icons": {
        "128": "images\/icon.128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "options.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.opensea.io\/*",
                "https:\/\/*.ftx.us\/*",
                "https:\/\/*.solanart.io\/*",
                "https:\/\/*.magiceden.io\/*"
            ],
            "js": [
                "js\/Config.js",
                "js\/CollectionChecker.js",
                "js\/BigLocalStorage.js",
                "js\/BrowserEnv.js",
                "js\/SimpleLocalStorage.js",
                "js\/utils.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs",
        "*:\/\/*.georgemike.com\/*"
    ]
}