Wizardry

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

Vad är Wizardry?

Wizardry är en Chrome-tillägg utvecklad av Wizardry Tools, och dess huvudfunktion är "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Wizardry-förlängningens CRX-fil

Ladda ner Wizardry-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Wizardry Wizardry
ID olphignaehaenjjgjoekjpelmpgnbgdg
Officiell webbadress https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg
Beskrivning This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Filstorlek 959 KB
Antal Installationer 47
Aktuell Version 0.7.0
Senast Uppdaterad 2022-03-03
Publiceringsdatum 2021-11-08
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Wizardry Tools
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.wizardry.tools
Stödda Språk 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"
    ]
}