Fantasy Targets

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

Apa itu Fantasy Targets?

Fantasy Targets adalah ekstensi Chrome yang dikembangkan oleh tcbeutler, dan fitur utamanya adalah "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Fantasy Targets

Unduh file ekstensi Fantasy Targets dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Fantasy Targets Fantasy Targets
ID abmbpdhchbhhecbjhnhlnobeiihhjfpa
URL Resmi https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa
Deskripsi Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
Ukuran File 450 KB
Jumlah Instalasi 3,000
Versi Saat Ini 0.1.3
Terakhir Diperbarui 2017-09-19
Tanggal Publikasi 2017-09-19
Penilaian 4.39/5 Total 44 Penilaian
Pengembang tcbeutler
Tipe Pembayaran free
Situs Ekstensi https://github.com/tcbeutler/FantasyTargets
Bahasa yang Didukung 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"
            ]
        }
    ]
}