Correlation Engine

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

什么是Correlation Engine?

Correlation Engine是由https://best-ball.com开发的Chrome扩展程序,该扩展的主要功能是“Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).”。

扩展截图

screenshot
screenshot
screenshot

下载Correlation Engine扩展crx文件

下载Correlation Engine扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
官方URL https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
简介 Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
文件大小 162 KB
安装次数 29
当前版本 3.5
更新时间 2023-07-30
上架时间 2023-07-22
评分 4.73/5 共11次评分
开发者 https://best-ball.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://best-ball.com/
帮助页面URL https://best-ball.com/contact
支持的语言 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"
    }
}