Correlation Engine

Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).

Что такое Correlation Engine?

Correlation Engine - это расширение Chrome, разработанное https://best-ball.com, и его основная функция - "Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Correlation Engine

Скачайте файлы расширений Correlation Engine в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Correlation Engine is an extension for UnderdogFantasy.com. It offers insights to aid in your drafting decisions.

To use: Upload your exposure CSV from UnderdogFantasy.com, then refresh the page. Your Correlation Engine is now ready to go!                    

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

Название Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
Официальный URL https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
Описание Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
Размер файла 162 KB
Количество установок 29
Текущая Версия 3.5
Последнее Обновление 2023-07-30
Дата публикации 2023-07-22
Рейтинг 4.73/5 Всего 11 оценок
Разработчик https://best-ball.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://best-ball.com/
URL страницы помощи https://best-ball.com/contact
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Correlation Engine",
    "description": "Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).",
    "version": "3.5",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/draftkings.com\/*",
                "https:\/\/underdogfantasy.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/draftkings.com\/*",
        "https:\/\/underdogfantasy.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "papaparse.min.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "16 x 16.png",
        "48": "48 x 48.png",
        "128": "128 x 128.png"
    }
}