LeetSports Fantasy Hockey Tools
Fantasy hockey tools
¿Qué es LeetSports Fantasy Hockey Tools?
LeetSports Fantasy Hockey Tools es una extensión de Chrome desarrollada por LeetSports, y su función principal es "Fantasy hockey tools".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión LeetSports Fantasy Hockey Tools
Descarga archivos de extensión LeetSports Fantasy Hockey Tools en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
LeetSports is a collection of fantasy hockey tools to help you win your ESPN, Yahoo, and Fantrax fantasy hockey pools in 2021. This fantasy hockey extension displays the lineup position of any ESPN, Yahoo, and Fantrax fantasy hockey players, including lines, power play, and penalty kill deployment directly on the website. Now you are also able to view remaining games and off night games (< half of teams are playing) for each player. You can see games for the remainder of the week or set a custom date range. Look out for more functionality coming soon! This will include a variety of tools to help you win your fantasy hockey pool this year! Note: You may need to force refresh your fantasy hockey website to get it work the first time after installing. To do this try Shift-Cmd-R on Mac or Ctrl-F5 for Windows. If this doesn't work, you can always try restarting chrome as well or toggling the extension on/off in chrome://extensions/
Información Básica de la Extensión
Nombre | LeetSports Fantasy Hockey Tools |
ID | immpookfmnhkhekgapcepemkdehdlgbb |
URL Oficial | https://chromewebstore.google.com/detail/leetsports-fantasy-hockey/immpookfmnhkhekgapcepemkdehdlgbb |
Descripción | Fantasy hockey tools |
Tamaño del Archivo | 24.69 KB |
Cantidad de Instalaciones | 1,017 |
Versión Actual | 1.0.4 |
Última Actualización | 2022-02-06 |
Fecha de Publicación | 2021-10-14 |
Calificación | 4.43/5 Total de 14 Calificaciones |
Desarrollador | LeetSports |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LeetSports Fantasy Hockey Tools", "description": "Fantasy hockey tools", "version": "1.0.4", "icons": { "128": "res\/icon.png" }, "browser_action": { "default_icon": "res\/icon.png", "default_popup": "popup.html", "default_title": "LeetSports" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/fantasy.espn.com\/hockey\/*" ], "js": [ "espn_content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/hockey.fantasysports.yahoo.com\/hockey\/*" ], "js": [ "yahoo_content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.fantrax.com\/fantasy\/league\/*" ], "js": [ "fantrax_content.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "storage", "http:\/\/leetsports-env.eba-fr7wdxc8.us-west-2.elasticbeanstalk.com\/*" ] } |