Decklist Auto-Filler

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

Decklist Auto-Filler란 무엇입니까?

Decklist Auto-Filler은(는) objectorientedcodetalker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tool for automatically migrating Yugioh decklists from DuelingBook/EDOPro to tournament registration websites"입니다.

확장 프로그램 스크린샷

Decklist Auto-Filler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}