RotoGrinders - Underdog Tools
RotoGrinders projections and player props on Underdog Fantasy
Wat is RotoGrinders - Underdog Tools?
RotoGrinders - Underdog Tools is een Chrome-extensie ontwikkeld door David, en de belangrijkste functie is "RotoGrinders projections and player props on Underdog Fantasy".
Extensie Screenshots
Download het CRX-bestand van de extensie RotoGrinders - Underdog Tools
Download RotoGrinders - Underdog Tools-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | gmkifldndgcobdkfnfdfhmkmenjcbgoo |
Officiële URL | https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo |
Beschrijving | RotoGrinders projections and player props on Underdog Fantasy |
Bestandsgrootte | 79.37 KB |
Aantal Installaties | 309 |
Huidige Versie | 1.0.24 |
Laatst Bijgewerkt | 2024-03-06 |
Publicatiedatum | 2021-11-26 |
Ontwikkelaar | David |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://rotogrinders.com |
Help Pagina-URL | https://rotogrinders.com |
URL van de Privacybeleid Pagina | https://rotogrinders.com/static/privacy-policy |
Ondersteunde Talen | 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" } } } |