Wizardry
This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Wat is Wizardry?
Wizardry is een Chrome-extensie ontwikkeld door Wizardry Tools, en de belangrijkste functie is "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".
Extensie Screenshots
Download het CRX-bestand van de extensie Wizardry
Download Wizardry-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Wizardry |
ID | olphignaehaenjjgjoekjpelmpgnbgdg |
Officiële URL | https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg |
Beschrijving | This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea. |
Bestandsgrootte | 959 KB |
Aantal Installaties | 47 |
Huidige Versie | 0.7.0 |
Laatst Bijgewerkt | 2022-03-03 |
Publicatiedatum | 2021-11-08 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Wizardry Tools |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.wizardry.tools |
Ondersteunde Talen | 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" ] } |