Correlation Engine

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

Correlation Engineคืออะไร?

Correlation Engine เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://best-ball.com และคุณลักษณะหลักของมันคือ "Visualizes schedule correlations for drafted NFL teams on Underdog Fantasy during playoff weeks (15-17)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Correlation Engine

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}