ESPN Fantasy Baseball Plus
Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler.
Τι είναι το ESPN Fantasy Baseball Plus;
Το ESPN Fantasy Baseball Plus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mirotrem, και η κύρια λειτουργία του είναι "Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ESPN Fantasy Baseball Plus
Λήψη αρχείων επέκτασης ESPN Fantasy Baseball Plus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension adds more detailed stats to the player overview and team page. Currently it adds: Pitching: + Pitch Count + BABIP + FIP + Career ERA,WHIP,BABIP,FIP Batting: + OBP + BB Season Total + BB per game + BABIP + 3Y Avg of BA,BABIP,OBP + Career Avg of BA,BABIP,OBP
Βασικές Πληροφορίες Επέκτασης
Όνομα | ESPN Fantasy Baseball Plus |
ID | cfdpkcilphoagajilmpeecdeobohfbcb |
Επίσημο URL | https://chromewebstore.google.com/detail/espn-fantasy-baseball-plu/cfdpkcilphoagajilmpeecdeobohfbcb |
Περιγραφή | Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler. |
Μέγεθος Αρχείου | 95.98 KB |
Αριθμός Εγκαταστάσεων | 227 |
Τρέχουσα Έκδοση | 0.7.3 |
Τελευταία Ενημέρωση | 2015-05-18 |
Ημερομηνία Δημοσίευσης | 2015-05-17 |
Αξιολόγηση | 3.93/5 Συνολικά 15 Αξιολογήσεις |
Προγραμματιστής | mirotrem |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ESPN Fantasy Baseball Plus", "version": "0.7.3", "manifest_version": 2, "description": "Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler.", "permissions": [ "http:\/\/espn.go.com\/\/*", "http:\/\/games.espn.go.com\/*", "http:\/\/www.fangraphs.com\/*", "webRequest" ], "icons": { "48": "espnPlusLogo-48.png", "128": "espnPlusLogo-128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/games.espn.go.com\/flb\/*" ], "js": [ "jquery.js", "contentscript.js" ] } ] } |