Wizardry

This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.

Wizardry là gì?

Wizardry là một tiện ích mở rộng Chrome được phát triển bởi Wizardry Tools, và tính năng chính của nó là "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".

Ả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 Wizardry

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

                        Wizardry is a tool to help NFT traders understand the rarity of items they purchase and view on the OpenSea market. It overlays rarity data directly on OpenSea listings, and is designed to show very early ranking information after a collection reveals presenting sniping opportunities before others can assess the rarity.                    

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

Tên Wizardry Wizardry
ID olphignaehaenjjgjoekjpelmpgnbgdg
URL Chính Thức https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg
Mô tả This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Kích Thước Tệp 959 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 0.7.0
Cập Nhật Lần Cuối 2022-03-03
Ngày Phát Hành 2021-11-08
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Wizardry Tools
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.wizardry.tools
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wizardry",
    "description": "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.",
    "version": "0.7.0",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "16": "icon-16.png",
        "19": "icon-19.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/opensea.io\/*",
            "https:\/\/*.wizardry.tools\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/opensea.io\/*",
                "https:\/\/*.wizardry.tools\/*"
            ],
            "css": [
                "app.css"
            ],
            "js": [
                "wizardry.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "icon-coin.png",
        "loading-indicator.gif"
    ]
}