Correlation Engine

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

O que é Correlation Engine?

Correlation Engine é uma extensão do Chrome desenvolvida por https://best-ball.com, e sua principal característica é "Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Correlation Engine

Baixe arquivos de extensão Correlation Engine no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
URL Oficial https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
Descrição Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
Tamanho do Arquivo 162 KB
Contagem de Instalações 29
Versão Atual 3.5
Última Atualização 2023-07-30
Data de Publicação 2023-07-22
Classificação 4.73/5 Total de 11 Avaliações
Desenvolvedor https://best-ball.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://best-ball.com/
URL da Página de Ajuda https://best-ball.com/contact
Idiomas Suportados 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"
    }
}