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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
    }
}