ESPN Fantasy Baseball Plus

Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler.

Was ist ESPN Fantasy Baseball Plus?

ESPN Fantasy Baseball Plus ist eine Chrome-Erweiterung, die von mirotrem entwickelt wurde, und ihr Hauptmerkmal ist "Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler.".

Erweiterungsscreenshots

screenshot

ESPN Fantasy Baseball Plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie ESPN Fantasy Baseball Plus-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name ESPN Fantasy Baseball Plus ESPN Fantasy Baseball Plus
ID cfdpkcilphoagajilmpeecdeobohfbcb
Offizielle URL https://chromewebstore.google.com/detail/espn-fantasy-baseball-plu/cfdpkcilphoagajilmpeecdeobohfbcb
Beschreibung Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler.
Dateigröße 95.98 KB
Installationsanzahl 227
Aktuelle Version 0.7.3
Letztes Update 2015-05-18
Veröffentlichungsdatum 2015-05-17
Bewertung 3.93/5 Insgesamt 15 Bewertungen
Entwickler mirotrem
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}