Fantasy Targets
Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
¿Qué es Fantasy Targets?
Fantasy Targets es una extensión de Chrome desarrollada por tcbeutler, y su función principal es "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Fantasy Targets
Descarga archivos de extensión Fantasy Targets en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | abmbpdhchbhhecbjhnhlnobeiihhjfpa |
URL Oficial | https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa |
Descripción | Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets. |
Tamaño del Archivo | 450 KB |
Cantidad de Instalaciones | 3,000 |
Versión Actual | 0.1.3 |
Última Actualización | 2017-09-19 |
Fecha de Publicación | 2017-09-19 |
Calificación | 4.39/5 Total de 44 Calificaciones |
Desarrollador | tcbeutler |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/tcbeutler/FantasyTargets |
Idiomas Soportados | 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" ] } ] } |