RotoGrinders - Underdog Tools

RotoGrinders projections and player props on Underdog Fantasy

RotoGrinders - Underdog Toolsคืออะไร?

RotoGrinders - Underdog Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David และคุณลักษณะหลักของมันคือ "RotoGrinders projections and player props on Underdog Fantasy"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RotoGrinders - Underdog Tools

ดาวน์โหลดไฟล์ส่วนขยาย RotoGrinders - Underdog Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension displays RotoGrinders player projections, in a variety of stat categories, for pick'em contests to help you make informed decisions in your contests. To access this content, RotoGrinders premium subscribers must sign into the extension.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ RotoGrinders - Underdog Tools RotoGrinders - Underdog Tools
ID gmkifldndgcobdkfnfdfhmkmenjcbgoo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo
คำอธิบาย RotoGrinders projections and player props on Underdog Fantasy
ขนาดไฟล์ 79.37 KB
จำนวนการติดตั้ง 309
เวอร์ชันปัจจุบัน 1.0.24
อัปเดตครั้งล่าสุด 2024-03-06
วันที่เผยแพร่ 2021-11-26
ผู้พัฒนา David
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://rotogrinders.com
URL หน้าช่วยเหลือ https://rotogrinders.com
URL หน้านโยบายความเป็นส่วนตัว https://rotogrinders.com/static/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RotoGrinders - Underdog Tools",
    "description": "RotoGrinders projections and player props on Underdog Fantasy",
    "version": "1.0.24",
    "manifest_version": 3,
    "host_permissions": [
        "*:\/\/*.rotogrinders.com\/*",
        "*:\/\/underdogfantasy.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "run_at": "document_start"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/underdogfantasy.com\/pick-em\/*"
            ],
            "js": [
                "libraries\/jquery.min.js",
                "libraries\/bindly.js",
                "content\/statmapping.js",
                "content\/element_binds.js",
                "content\/main.js"
            ],
            "css": [
                "content\/css\/custom.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "incognito": "spanning",
    "icons": {
        "16": ".\/images\/icon_16.png",
        "48": ".\/images\/icon_48.png",
        "128": ".\/images\/icon_128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": ".\/images\/icon_48.png"
        }
    }
}