Wizardry

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

Was ist Wizardry?

Wizardry ist eine Chrome-Erweiterung, die von Wizardry Tools entwickelt wurde, und ihr Hauptmerkmal ist "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Wizardry-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wizardry-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Wizardry Wizardry
ID olphignaehaenjjgjoekjpelmpgnbgdg
Offizielle URL https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg
Beschreibung This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Dateigröße 959 KB
Installationsanzahl 47
Aktuelle Version 0.7.0
Letztes Update 2022-03-03
Veröffentlichungsdatum 2021-11-08
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Wizardry Tools
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.wizardry.tools
Unterstützte Sprachen 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"
    ]
}