Fantasy Targets

Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.

Fantasy Targets란 무엇입니까?

Fantasy Targets은(는) tcbeutler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Fantasy Targets puts more information about players right in your ESPN Fantasy Football league pages.

When viewing information on a player, the following data is added to the week-by-week statistics:

- Player number
- Receiving Targets                    

확장 프로그램 기본 정보

이름 Fantasy Targets Fantasy Targets
ID abmbpdhchbhhecbjhnhlnobeiihhjfpa
공식 URL https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa
설명 Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
파일 크기 450 KB
설치 횟수 3,000
현재 버전 0.1.3
최근 업데이트 2017-09-19
출시 날짜 2017-09-19
평점 4.39/5 총 44 개의 평점
개발자 tcbeutler
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tcbeutler/FantasyTargets
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Targets",
    "version": "0.1.3",
    "manifest_version": 2,
    "description": "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.",
    "permissions": [
        "http:\/\/www.espn.com\/nfl\/*",
        "http:\/\/games.espn.com\/*",
        "https:\/\/games.espn.com\/*",
        "http:\/\/*.fantasypros.com\/*",
        "https:\/\/*.fantasypros.com\/*",
        "webRequest",
        "storage"
    ],
    "icons": {
        "48": "fantasyTargetsLogo-48.png",
        "128": "fantasyTargetsLogo-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/games.espn.com\/ffl\/*",
                "https:\/\/games.espn.com\/ffl\/*"
            ],
            "js": [
                "lib\/ender.min.js",
                "fantasyProsStatsProvider.js",
                "espnStatsProvider.js",
                "nflScheduleUtils.js",
                "domController.js",
                "contentscript.js"
            ]
        }
    ]
}