Correlation Engine

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

Vad är Correlation Engine?

Correlation Engine är en Chrome-tillägg utvecklad av https://best-ball.com, och dess huvudfunktion är "Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Correlation Engine-förlängningens CRX-fil

Ladda ner Correlation Engine-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
Officiell webbadress https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
Beskrivning Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
Filstorlek 162 KB
Antal Installationer 29
Aktuell Version 3.5
Senast Uppdaterad 2023-07-30
Publiceringsdatum 2023-07-22
Betyg 4.73/5 Totalt 11 Betyg
Utvecklare https://best-ball.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://best-ball.com/
Hjälpsida URL https://best-ball.com/contact
Stödda Språk 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"
    }
}