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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Wizardry
قم بتنزيل ملفات الامتداد Wizardry بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } |