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