ESPN NHL Fantasy Team Auto Setup

Automatically add active players to the current roster in an ESPN NHL fantasy league.

ESPN NHL Fantasy Team Auto Setup란 무엇입니까?

ESPN NHL Fantasy Team Auto Setup은(는) espn.fantasy.autopick에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically add active players to the current roster in an ESPN NHL fantasy league."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ESPN NHL Fantasy Team Auto Setup 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds buttons for automatic team setup to the ESPN NHL Fantasy clubhouse page. The "Auto (day)" button will automatically put all players that are active on that day in the starting lineup. If there aren't enough available slots for all the active players, the uninjured players are preferred. The "Auto (week)" button will automatically set up players for the rest of the current game week, which is always Monday->Sunday on ESPN.

Automatic multi-day setup may fail in some cases. To increase the chance of success, don't touch anything else while the automatic setup is in progress. The extension needs to click its way through each day of the week, one by one.

If you encounter an error message when using the extension, reload the page and try again. If it fails consistently you can try to increase the delay between moves, which by default is one second. If nothing happens when you click the button, look for errors or warnings in the developer console (F12), and report the issue on the extension's GitHub page.

If you're trying to do automatic setup in an NBA league you'll need to install the NBA version of the extension, which is called ESPN NBA Fantasy Team Auto Setup.                    

확장 프로그램 기본 정보

이름 ESPN NHL Fantasy Team Auto Setup ESPN NHL Fantasy Team Auto Setup
ID nageaaodmancfbkhklidfjdhahghejle
공식 URL https://chromewebstore.google.com/detail/espn-nhl-fantasy-team-aut/nageaaodmancfbkhklidfjdhahghejle
설명 Automatically add active players to the current roster in an ESPN NHL fantasy league.
파일 크기 94.27 KB
설치 횟수 615
현재 버전 4.0.0
최근 업데이트 2023-11-06
출시 날짜 2021-04-05
평점 5.00/5 총 4 개의 평점
개발자 espn.fantasy.autopick
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/magnusbakken/espn-fantasy-autopick
도움말 페이지 URL https://github.com/magnusbakken/espn-fantasy-autopick/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ESPN NHL Fantasy Team Auto Setup",
    "description": "Automatically add active players to the current roster in an ESPN NHL fantasy league.",
    "version": "4.0.0",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/fantasy.espn.com\/hockey\/team*"
    ],
    "icons": {
        "32": "assets\/icon-32.png",
        "64": "assets\/icon-64.png",
        "128": "assets\/icon-128.png"
    },
    "action": {
        "default_title": "ESPN NHL Fantasy Team Auto Setup",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.fantasy.espn.com\/hockey\/team*"
            ],
            "js": [
                "data-nhl.js",
                "data.js",
                "autosetup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "settings.html"
    }
}