Wizardry
This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Wizardry क्या है?
Wizardry Wizardry Tools द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wizardry एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |