Fantasy Targets
Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
Was ist Fantasy Targets?
Fantasy Targets ist eine Chrome-Erweiterung, die von tcbeutler entwickelt wurde, und ihr Hauptmerkmal ist "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".
Erweiterungsscreenshots
Fantasy Targets-Erweiterungs-CRX-Datei herunterladen
Laden Sie Fantasy Targets-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | abmbpdhchbhhecbjhnhlnobeiihhjfpa |
Offizielle URL | https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa |
Beschreibung | Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets. |
Dateigröße | 450 KB |
Installationsanzahl | 3,000 |
Aktuelle Version | 0.1.3 |
Letztes Update | 2017-09-19 |
Veröffentlichungsdatum | 2017-09-19 |
Bewertung | 4.39/5 Insgesamt 44 Bewertungen |
Entwickler | tcbeutler |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tcbeutler/FantasyTargets |
Unterstützte Sprachen | 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" ] } ] } |