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文件

下載Fantasy Targets擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}