Fantasy Targets

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

ما هو Fantasy Targets؟

Fantasy Targets هو إضافة Chrome تم تطويرها بواسطة tcbeutler، والميزة الرئيسية لها هي "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Fantasy Targets

قم بتنزيل ملفات الامتداد Fantasy Targets بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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"
            ]
        }
    ]
}