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是由mirotrem开发的Chrome扩展程序,该扩展的主要功能是“Enhances the ESPN fantasy baseball website with additional player stats. Special thanks to FantasyTargets by tcbeutler.”。
扩展截图
下载ESPN Fantasy Baseball Plus扩展crx文件
下载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" ] } ] } |