Correlation Engine

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

Co je Correlation Engine?

Correlation Engine je rozšíření Chrome vyvinuté https://best-ball.com, a jeho hlavní funkcí je „Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Correlation Engine

Stáhněte si soubory rozšíření Correlation Engine ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
Oficiální URL https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
Popis Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
Velikost souboru 162 KB
Počet instalací 29
Aktuální Verze 3.5
Poslední Aktualizace 2023-07-30
Datum Vydání 2023-07-22
Hodnocení 4.73/5 Celkem 11 Hodnocení
Vývojář https://best-ball.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://best-ball.com/
URL Stránky Nápovědy https://best-ball.com/contact
Podporované Jazyky 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"
    }
}