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" ] } ] } |