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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}