WaifuDAOExtension
This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace.
WaifuDAOExtension là gì?
WaifuDAOExtension là một tiện ích mở rộng Chrome được phát triển bởi Akatske, và tính năng chính của nó là "This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WaifuDAOExtension
Tải xuống các tệp mở rộng WaifuDAOExtension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension is both a rarity calculator and a rarity and ranking overlay for the DigitalEyes and Magic Eden WAIFU DAO GAMING GUILD Marketplace. Simply browse listings with the extension enabled and the rarity and moon ranking of each listed Waifu will be automatically added to the listings on screen. You can also click on the extension icon to bring up the rarity calculator to calculate the approximate rarity of any Waifu trait combination you want. Waifu DAO Gaming Guild Discord: https://discord.gg/bWhw2zhvDY Source Code: https://github.com/AkatskeGaming/WaifuDAOExtension If you like this extension consider tipping SOL at the following address: KrxpvqKbU5XL2dTUgLURjYcvULyrRxjHJR5b1Cx8thR
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WaifuDAOExtension |
ID | jhnkpohjngfkjpekglmlbphdaobagblo |
URL Chính Thức | https://chromewebstore.google.com/detail/waifudaoextension/jhnkpohjngfkjpekglmlbphdaobagblo |
Mô tả | This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace. |
Kích Thước Tệp | 257 KB |
Số Lần Cài Đặt | 89 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2021-11-20 |
Ngày Phát Hành | 2021-10-12 |
Nhà Phát Triển | Akatske |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/AkatskeGaming/WaifuDAOExtension |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Akatske", "name": "WaifuDAOExtension", "description": "This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace.", "version": "1.1.0", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*.digitaleyes.market\/collections\/Waifu%20DAO%20Gaming%20Guild*", "*:\/\/*.digitaleyes.market\/wallet*" ], "js": [ "rarityCalculator.js", "digitalEyesRarity.js", "waifuData.js" ], "css": [ "rarity.css" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.magiceden.io\/marketplace\/waifu_dao_gaming_guild*", "*:\/\/*.magiceden.io\/me?tab=my-items*" ], "js": [ "rarityCalculator.js", "magicEdenRarity.js", "waifuData.js" ], "css": [ "rarity.css" ], "run_at": "document_end" } ], "action": { "default_popup": "waifu.html", "default_icon": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" }, "default_title": "WaifuDaoExtension" }, "icons": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" }, "options_page": "waifu.html" } |