Fantasy Targets

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

Vad är Fantasy Targets?

Fantasy Targets är en Chrome-tillägg utvecklad av tcbeutler, och dess huvudfunktion är "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".

Tilläggsskärmbilder

screenshot

Ladda ner Fantasy Targets-förlängningens CRX-fil

Ladda ner Fantasy Targets-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Fantasy Targets Fantasy Targets
ID abmbpdhchbhhecbjhnhlnobeiihhjfpa
Officiell webbadress https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa
Beskrivning Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
Filstorlek 450 KB
Antal Installationer 3,000
Aktuell Version 0.1.3
Senast Uppdaterad 2017-09-19
Publiceringsdatum 2017-09-19
Betyg 4.39/5 Totalt 44 Betyg
Utvecklare tcbeutler
Betalningssätt free
Tilläggswebbplats https://github.com/tcbeutler/FantasyTargets
Stödda Språk 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"
            ]
        }
    ]
}