Wizardry
This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Cos'è Wizardry?
Wizardry è un'estensione di Chrome sviluppata da Wizardry Tools, e la sua funzione principale è "This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wizardry
Scarica i file di estensione Wizardry in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Wizardry |
ID | olphignaehaenjjgjoekjpelmpgnbgdg |
URL Ufficiale | https://chromewebstore.google.com/detail/wizardry/olphignaehaenjjgjoekjpelmpgnbgdg |
Descrizione | This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea. |
Dimensione del File | 959 KB |
Conteggio Installazioni | 47 |
Versione Corrente | 0.7.0 |
Ultimo Aggiornamento | 2022-03-03 |
Data di Pubblicazione | 2021-11-08 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Wizardry Tools |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.wizardry.tools |
Lingue Supportate | 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" ] } |