FPL Analytics and Optimization

A tool to help with decision making for FPL - using analytics!

Что такое FPL Analytics and Optimization?

FPL Analytics and Optimization - это расширение Chrome, разработанное https://fploptimized.com, и его основная функция - "A tool to help with decision making for FPL - using analytics!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения FPL Analytics and Optimization

Скачайте файлы расширений 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!                    

Основная информация о расширении

Название FPL Analytics and Optimization FPL Analytics and Optimization
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"
    }
}