Wizardry
This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.
Wizardryとは何ですか?
WizardryはWizardry Toolsによって開発されたChromeの拡張機能で、その主な機能は「This extension indexes rarity data for NFT collections and displays rankings directly on OpenSea.」です。
拡張機能のスクリーンショット
Wizardry拡張機能のCRXファイルをダウンロード
Wizardry拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |