Correlation Engine

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

Correlation Engine là gì?

Correlation Engine là một tiện ích mở rộng Chrome được phát triển bởi https://best-ball.com, và tính năng chính của nó là "Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Correlation Engine

Tải xuống các tệp mở rộng Correlation Engine dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Correlation Engine Correlation Engine
ID enijncogiilpamedgdeeejbabbglhdjf
URL Chính Thức https://chromewebstore.google.com/detail/correlation-engine/enijncogiilpamedgdeeejbabbglhdjf
Mô tả Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17).
Kích Thước Tệp 162 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 3.5
Cập Nhật Lần Cuối 2023-07-30
Ngày Phát Hành 2023-07-22
Đánh Giá 4.73/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://best-ball.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://best-ball.com/
URL Trang Trợ Giúp https://best-ball.com/contact
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}