Fantasy Targets
Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
Cos'è Fantasy Targets?
Fantasy Targets è un'estensione di Chrome sviluppata da tcbeutler, e la sua funzione principale è "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Fantasy Targets
Scarica i file di estensione Fantasy Targets in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | abmbpdhchbhhecbjhnhlnobeiihhjfpa |
URL Ufficiale | https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa |
Descrizione | Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets. |
Dimensione del File | 450 KB |
Conteggio Installazioni | 3,000 |
Versione Corrente | 0.1.3 |
Ultimo Aggiornamento | 2017-09-19 |
Data di Pubblicazione | 2017-09-19 |
Valutazione | 4.39/5 Totale 44 Valutazioni |
Sviluppatore | tcbeutler |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tcbeutler/FantasyTargets |
Lingue Supportate | 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" ] } ] } |