Fantasy Targets

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

Qu'est-ce que Fantasy Targets ?

Fantasy Targets est une extension Chrome développée par tcbeutler, et sa fonction principale est "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fantasy Targets

Téléchargez les fichiers d'extension Fantasy Targets au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Fantasy Targets Fantasy Targets
ID abmbpdhchbhhecbjhnhlnobeiihhjfpa
URL Officiel 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.
Taille du Fichier 450 KB
Nombre d'Installations 3,000
Version Actuelle 0.1.3
Dernière Mise à Jour 2017-09-19
Date de Publication 2017-09-19
Évaluation 4.39/5 Total 44 Évaluations
Développeur tcbeutler
Type de Paiement free
Site Web de l'Extension https://github.com/tcbeutler/FantasyTargets
Langues Prises en Charge 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"
            ]
        }
    ]
}