RotoGrinders - Underdog Tools
RotoGrinders projections and player props on Underdog Fantasy
Qu'est-ce que RotoGrinders - Underdog Tools ?
RotoGrinders - Underdog Tools est une extension Chrome développée par David, et sa fonction principale est "RotoGrinders projections and player props on Underdog Fantasy".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension RotoGrinders - Underdog Tools
Téléchargez les fichiers d'extension RotoGrinders - Underdog Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | gmkifldndgcobdkfnfdfhmkmenjcbgoo |
URL Officiel | https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo |
Description | RotoGrinders projections and player props on Underdog Fantasy |
Taille du Fichier | 79.37 KB |
Nombre d'Installations | 309 |
Version Actuelle | 1.0.24 |
Dernière Mise à Jour | 2024-03-06 |
Date de Publication | 2021-11-26 |
Développeur | David |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://rotogrinders.com |
URL de la Page d'Aide | https://rotogrinders.com |
URL de la Page de Politique de Confidentialité | https://rotogrinders.com/static/privacy-policy |
Langues Prises en Charge | 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" } } } |