Wizardry

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

Wizardryคืออะไร?

Wizardry เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Wizardry Tools และคุณลักษณะหลักของมันคือ "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wizardry

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}