Fantasy Targets
Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
什么是Fantasy Targets?
Fantasy Targets是由tcbeutler开发的Chrome扩展程序,该扩展的主要功能是“Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.”。
扩展截图
下载Fantasy Targets扩展crx文件
下载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" ] } ] } |