RotoGrinders - Underdog Tools
RotoGrinders projections and player props on Underdog Fantasy
Co to jest RotoGrinders - Underdog Tools?
RotoGrinders - Underdog Tools to rozszerzenie Chrome opracowane przez David, a jego główną funkcją jest „RotoGrinders projections and player props on Underdog Fantasy”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia RotoGrinders - Underdog Tools
Pobierz pliki rozszerzeń RotoGrinders - Underdog Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gmkifldndgcobdkfnfdfhmkmenjcbgoo |
| Oficjalny URL | https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo |
| Opis | RotoGrinders projections and player props on Underdog Fantasy |
| Rozmiar pliku | 79.37 KB |
| Liczba instalacji | 309 |
| Aktualna Wersja | 1.0.24 |
| Ostatnia Aktualizacja | 2024-03-06 |
| Data Publikacji | 2021-11-26 |
| Deweloper | David |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://rotogrinders.com |
| Adres URL Strony Pomocy | https://rotogrinders.com |
| Adres URL Strony Polityki Prywatności | https://rotogrinders.com/static/privacy-policy |
| Obsługiwane Języki | 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"
}
}
} | |