Wizardry
This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Qu'est-ce que Wizardry ?
Wizardry est une extension Chrome développée par Wizardry Tools, et sa fonction principale est "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Wizardry
Téléchargez les fichiers d'extension Wizardry au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Wizardry |
ID | olphignaehaenjjgjoekjpelmpgnbgdg |
URL Officiel | https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg |
Description | This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea. |
Taille du Fichier | 959 KB |
Nombre d'Installations | 47 |
Version Actuelle | 0.7.0 |
Dernière Mise à Jour | 2022-03-03 |
Date de Publication | 2021-11-08 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Wizardry Tools |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.wizardry.tools |
Langues Prises en Charge | 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" ] } |