Correlation Engine

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

Co to jest Correlation Engine?

Correlation Engine to rozszerzenie Chrome opracowane przez https://best-ball.com, a jego główną funkcją jest „Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Correlation Engine

Pobierz pliki rozszerzeń Correlation Engine w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
Oficjalny URL https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
Opis Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
Rozmiar pliku 162 KB
Liczba instalacji 29
Aktualna Wersja 3.5
Ostatnia Aktualizacja 2023-07-30
Data Publikacji 2023-07-22
Ocena 4.73/5 Łącznie 11 Oceny
Deweloper https://best-ball.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://best-ball.com/
Adres URL Strony Pomocy https://best-ball.com/contact
Obsługiwane Języki 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"
    }
}