Wizardry

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

什麼是Wizardry?

Wizardry是由Wizardry Tools開發的Chrome擴展程式,該擴展的主要功能是“This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.”。

擴展截圖

screenshot
screenshot
screenshot

下載Wizardry擴展crx文件

下載Wizardry擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Wizardry Wizardry
ID olphignaehaenjjgjoekjpelmpgnbgdg
官方網址 https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg
簡介 This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
檔案大小 959 KB
安裝次數 47
目前版本 0.7.0
更新時間 2022-03-03
上架時間 2021-11-08
評分 5.00/5 共 4 次評分
開發者 Wizardry Tools
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.wizardry.tools
支援的語言 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"
    ]
}