Decklist Auto-Filler

Tool for automatically migrating Yugioh decklists from DuelingBook/EDOPro to tournament registration websites

Decklist Auto-Filler क्या है?

Decklist Auto-Filler objectorientedcodetalker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tool for automatically migrating Yugioh decklists from DuelingBook/EDOPro to tournament registration websites"।

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

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

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

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

                        **Version 0.2.0**
- Added autofill progress indicator
- Fixed bug that caused "Welcome" page to open on startup


Tired of crafting a Yugioh deck to play for a tournament on a simulator, only to manually enter the same decklist again through a clunky form on the tournament registration website? This is the tool for you!

The Decklist Auto-Filler extension takes a YDKE deck string from popular Yugioh simulators like DuelingBook and EDOPro, and automatically fills out your decklist form on registration websites for you! Simply click "Autofill", and refresh the page when prompted!

Works for cards released in the Yugioh TCG up to Structure Deck: Fire Kings, and will be updated in the future following new card releases.

If you encounter any bugs or want any new features added, please contact [email protected].                    

एक्सटेंशन की मूल जानकारी

नाम Decklist Auto-Filler Decklist Auto-Filler
ID knjanhkpoicpjebbkpcnbinkbdhhpfld
आधिकारिक URL https://chromewebstore.google.com/detail/decklist-auto-filler/knjanhkpoicpjebbkpcnbinkbdhhpfld
विवरण Tool for automatically migrating Yugioh decklists from DuelingBook/EDOPro to tournament registration websites
फ़ाइल का आकार 4.88 MB
स्थापना संख्या 66
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2024-01-20
प्रकाशन तिथि 2024-01-14
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर objectorientedcodetalker
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Decklist Auto-Filler",
    "description": "Tool for automatically migrating Yugioh decklists from DuelingBook\/EDOPro to tournament registration websites",
    "version": "0.2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "welcome\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "ext\/index.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png",
            "256": "icons\/icon256.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/yugiohregistration.com\/*",
                "https:\/\/events.thesidedeck.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}