LeetSports Fantasy Hockey Tools

Fantasy hockey tools

LeetSports Fantasy Hockey Tools란 무엇입니까?

LeetSports Fantasy Hockey Tools은(는) LeetSports에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fantasy hockey tools"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

LeetSports Fantasy Hockey Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        LeetSports is a collection of fantasy hockey tools to help you win your ESPN, Yahoo, and Fantrax fantasy hockey pools in 2021.

This fantasy hockey extension displays the lineup position of any ESPN, Yahoo, and Fantrax fantasy hockey players, including lines, power play, and penalty kill deployment directly on the website.

Now you are also able to view remaining games and off night games (< half of teams are playing) for each player. You can see games for the remainder of the week or set a custom date range.

Look out for more functionality coming soon! This will include a variety of tools to help you win your fantasy hockey pool this year!

Note: You may need to force refresh your fantasy hockey website to get it work the first time after installing. To do this try Shift-Cmd-R on Mac or Ctrl-F5 for Windows. If this doesn't work, you can always try restarting chrome as well or toggling the extension on/off in chrome://extensions/                    

확장 프로그램 기본 정보

이름 LeetSports Fantasy Hockey Tools LeetSports Fantasy Hockey Tools
ID immpookfmnhkhekgapcepemkdehdlgbb
공식 URL https://chromewebstore.google.com/detail/leetsports-fantasy-hockey/immpookfmnhkhekgapcepemkdehdlgbb
설명 Fantasy hockey tools
파일 크기 24.69 KB
설치 횟수 1,017
현재 버전 1.0.4
최근 업데이트 2022-02-06
출시 날짜 2021-10-14
평점 4.43/5 총 14 개의 평점
개발자 LeetSports
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LeetSports Fantasy Hockey Tools",
    "description": "Fantasy hockey tools",
    "version": "1.0.4",
    "icons": {
        "128": "res\/icon.png"
    },
    "browser_action": {
        "default_icon": "res\/icon.png",
        "default_popup": "popup.html",
        "default_title": "LeetSports"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/fantasy.espn.com\/hockey\/*"
            ],
            "js": [
                "espn_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/hockey.fantasysports.yahoo.com\/hockey\/*"
            ],
            "js": [
                "yahoo_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.fantrax.com\/fantasy\/league\/*"
            ],
            "js": [
                "fantrax_content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/leetsports-env.eba-fr7wdxc8.us-west-2.elasticbeanstalk.com\/*"
    ]
}