Wizardry

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

What is Wizardry?

Wizardry is a Chrome extension developed by Wizardry Tools, and its main feature is "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Wizardry Extension CRX File

Download Wizardry extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Wizardry Wizardry
ID olphignaehaenjjgjoekjpelmpgnbgdg
Official URL https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg
Description This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
File Size 959 KB
Installation Count 47
Current Version 0.7.0
Last Updated 2022-03-03
Publish Date 2021-11-08
Rating 5.00/5 Total 4 Ratings
Developer Wizardry Tools
Email [email protected]
Payment Type free
Extension Website https://www.wizardry.tools
Supported Languages 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"
    ]
}