RotoGrinders - Underdog Tools
RotoGrinders projections and player props on Underdog Fantasy
Cos'è RotoGrinders - Underdog Tools?
RotoGrinders - Underdog Tools è un'estensione di Chrome sviluppata da David, e la sua funzione principale è "RotoGrinders projections and player props on Underdog Fantasy".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RotoGrinders - Underdog Tools
Scarica i file di estensione RotoGrinders - Underdog Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | gmkifldndgcobdkfnfdfhmkmenjcbgoo |
URL Ufficiale | https://chrome.google.com/webstore/detail/rotogrinders-underdog-too/gmkifldndgcobdkfnfdfhmkmenjcbgoo |
Descrizione | RotoGrinders projections and player props on Underdog Fantasy |
Dimensione del File | 79.37 KB |
Conteggio Installazioni | 309 |
Versione Corrente | 1.0.24 |
Ultimo Aggiornamento | 2024-03-06 |
Data di Pubblicazione | 2021-11-26 |
Sviluppatore | David |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://rotogrinders.com |
URL della Pagina di Aiuto | https://rotogrinders.com |
URL della Pagina della Politica sulla Privacy | https://rotogrinders.com/static/privacy-policy |
Lingue Supportate | 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" } } } |