Fantasy Targets
Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
Co to jest Fantasy Targets?
Fantasy Targets to rozszerzenie Chrome opracowane przez tcbeutler, a jego główną funkcją jest „Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Fantasy Targets
Pobierz pliki rozszerzeń Fantasy Targets w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | abmbpdhchbhhecbjhnhlnobeiihhjfpa |
Oficjalny URL | https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa |
Opis | Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets. |
Rozmiar pliku | 450 KB |
Liczba instalacji | 3,000 |
Aktualna Wersja | 0.1.3 |
Ostatnia Aktualizacja | 2017-09-19 |
Data Publikacji | 2017-09-19 |
Ocena | 4.39/5 Łącznie 44 Oceny |
Deweloper | tcbeutler |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/tcbeutler/FantasyTargets |
Obsługiwane Języki | 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" ] } ] } |