Fantasy Targets

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

What is Fantasy Targets?

Fantasy Targets is a Chrome extension developed by tcbeutler, and its main feature is "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".

Extension Screenshots

screenshot

Download Fantasy Targets Extension CRX File

Download Fantasy Targets extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Fantasy Targets Fantasy Targets
ID abmbpdhchbhhecbjhnhlnobeiihhjfpa
Official URL https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa
Description Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
File Size 450 KB
Installation Count 3,000
Current Version 0.1.3
Last Updated 2017-09-19
Publish Date 2017-09-19
Rating 4.39/5 Total 44 Ratings
Developer tcbeutler
Payment Type free
Extension Website https://github.com/tcbeutler/FantasyTargets
Supported Languages 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"
            ]
        }
    ]
}