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.".
Снимки экрана расширения
Скачать файл CRX расширения Fantasy Targets
Скачайте файлы расширений Fantasy Targets в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
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" ] } ] } |