WaifuDAOExtension

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

WaifuDAOExtension क्या है?

WaifuDAOExtension Akatske द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension is mainly aimed at providing an automatic Rarity calculator for Digital Eyes Marketplace."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WaifuDAOExtension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
}