Fantasy Hockey Lines

Displays the lineup position of a Yahoo! Fantasy players.

Fantasy Hockey Lines란 무엇입니까?

Fantasy Hockey Lines은(는) Aman Kang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays the lineup position of a Yahoo! Fantasy players."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        An extension that embeds the current lineup position of a Yahoo! Fantasy Hockey player directly onto the website. A coloured icon indicates the lineup position according to data from DailyFaceoff.

Updates:

v3.0
- Resolved critical break from updated Yahoo UI
- Added Moneypuck stat icon to display winning odds for goaltenders
- Automatic update of data every 1hr                    

확장 프로그램 기본 정보

이름 Fantasy Hockey Lines Fantasy Hockey Lines
ID bbhedcjidjddbgcoplmganehemblknjg
공식 URL https://chromewebstore.google.com/detail/fantasy-hockey-lines/bbhedcjidjddbgcoplmganehemblknjg
설명 Displays the lineup position of a Yahoo! Fantasy players.
파일 크기 32.99 KB
설치 횟수 1,238
현재 버전 3.0
최근 업데이트 2024-02-03
출시 날짜 2021-03-23
평점 4.83/5 총 23 개의 평점
개발자 Aman Kang
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Hockey Lines",
    "short_name": "Fantasy Hockey Lines",
    "description": "Displays the lineup position of a Yahoo! Fantasy players.",
    "version": "3.0",
    "author": "Aman Kang",
    "manifest_version": 3,
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hockey.fantasysports.yahoo.com\/*",
                "https:\/\/www.dailyfaceoff.com\/teams\/*",
                "https:\/\/www.moneypuck.com\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "images\/16.png",
            "38": "images\/48.png"
        },
        "default_title": "Fantasy Hockey Lines",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/hockey.fantasysports.yahoo.com\/*"
    ]
}