Correlation Engine

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

Cos'è Correlation Engine?

Correlation Engine è un'estensione di Chrome sviluppata da https://best-ball.com, e la sua funzione principale è "Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Correlation Engine

Scarica i file di estensione Correlation Engine in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
URL Ufficiale https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
Descrizione Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
Dimensione del File 162 KB
Conteggio Installazioni 29
Versione Corrente 3.5
Ultimo Aggiornamento 2023-07-30
Data di Pubblicazione 2023-07-22
Valutazione 4.73/5 Totale 11 Valutazioni
Sviluppatore https://best-ball.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://best-ball.com/
URL della Pagina di Aiuto https://best-ball.com/contact
Lingue Supportate 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"
    }
}