Wizardry

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

O que é Wizardry?

Wizardry é uma extensão do Chrome desenvolvida por Wizardry Tools, e sua principal característica é "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Wizardry

Baixe arquivos de extensão Wizardry no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Wizardry Wizardry
ID olphignaehaenjjgjoekjpelmpgnbgdg
URL Oficial https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg
Descrição This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Tamanho do Arquivo 959 KB
Contagem de Instalações 47
Versão Atual 0.7.0
Última Atualização 2022-03-03
Data de Publicação 2021-11-08
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Wizardry Tools
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.wizardry.tools
Idiomas Suportados 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"
    ]
}