RotoGrinders - Underdog Tools

RotoGrinders projections and player props on Underdog Fantasy

Was ist RotoGrinders - Underdog Tools?

RotoGrinders - Underdog Tools ist eine Chrome-Erweiterung, die von David entwickelt wurde, und ihr Hauptmerkmal ist "RotoGrinders projections and player props on Underdog Fantasy".

Erweiterungsscreenshots

screenshot
screenshot

RotoGrinders - Underdog Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie RotoGrinders - Underdog Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name RotoGrinders - Underdog Tools RotoGrinders - Underdog Tools
ID gmkifldndgcobdkfnfdfhmkmenjcbgoo
Offizielle URL https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo
Beschreibung RotoGrinders projections and player props on Underdog Fantasy
Dateigröße 79.37 KB
Installationsanzahl 309
Aktuelle Version 1.0.24
Letztes Update 2024-03-06
Veröffentlichungsdatum 2021-11-26
Entwickler David
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://rotogrinders.com
Hilfeseite URL https://rotogrinders.com
URL der Datenschutzrichtlinien-Seite https://rotogrinders.com/static/privacy-policy
Unterstützte Sprachen 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"
        }
    }
}