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
官方網址 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
電子郵箱 [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"
}