WaifuDAOExtension

This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace.

WaifuDAOExtensionとは何ですか?

WaifuDAOExtensionはAkatskeによって開発されたChromeの拡張機能で、その主な機能は「This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

WaifuDAOExtension拡張機能のCRXファイルをダウンロード

WaifuDAOExtension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 WaifuDAOExtension WaifuDAOExtension
ID jhnkpohjngfkjpekglmlbphdaobagblo
公式URL https://chromewebstore.google.com/detail/waifudaoextension/jhnkpohjngfkjpekglmlbphdaobagblo
説明 This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace.
ファイルサイズ 257 KB
インストール数 89
現在のバージョン 1.1.0
最終更新日 2021-11-20
公開日 2021-10-12
開発者 Akatske
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/AkatskeGaming/WaifuDAOExtension
対応言語 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"
}