FPL Analytics and Optimization
A tool to help with decision making for FPL - using analytics!
什么是FPL Analytics and Optimization?
FPL Analytics and Optimization是由https://fploptimized.com开发的Chrome扩展程序,该扩展的主要功能是“A tool to help with decision making for FPL - using analytics!”。
扩展截图
下载FPL Analytics and Optimization扩展crx文件
下载FPL Analytics and Optimization扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This package helps you to evaluate your team picks in Fantasy Premier League (FPL) game from an analytical perspective. It provides shortcuts to
1) Scenarios: To calculate average points your team can collect using simulated scenarios, and helps decision making
2) Live GW Tracker: To identify fixtures with highest and lowest gains and losses to identify your team's weak spots.
You can use this tool to:
- Quickly compare which transfers would help your team performance more
- See the impact of cross-playing players in simulated settings
- Choose your captain to maximize probability of having more points than your competition or field
- Decide bench order using an analytical method
Using this tool will bring you an edge in FPL! 扩展基本信息
| 名称 | |
| ID | cdjkfkadogmhpfkgmljdeenffdinmdlg |
| 官方URL | https://chromewebstore.google.com/detail/fpl-analytics-and-optimiz/cdjkfkadogmhpfkgmljdeenffdinmdlg |
| 简介 | A tool to help with decision making for FPL - using analytics! |
| 文件大小 | 577 KB |
| 安装次数 | 675 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2022-03-14 |
| 上架时间 | 2022-03-05 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://fploptimized.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "FPL Analytics and Optimization",
"version": "1.0.2",
"description": "A tool to help with decision making for FPL - using analytics!",
"permissions": [
"activeTab",
"webRequest"
],
"host_permissions": [
"*:\/\/fantasy.premierleague.com\/*"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/fantasy.premierleague.com\/*"
],
"js": [
"js\/page.js"
]
}
],
"action": {
"default_popup": "default.html",
"default_icon": {
"16": "images\/16.png",
"32": "images\/32.png",
"64": "images\/64.png",
"128": "images\/128.png"
}
},
"icons": {
"128": "images\/128.png",
"256": "images\/256.png",
"512": "images\/512.png"
}
} | |