LM Note Generator For ESPN Fantasy Football
Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!
¿Qué es LM Note Generator For ESPN Fantasy Football?
LM Note Generator For ESPN Fantasy Football es una extensión de Chrome desarrollada por jpmayerunc, y su función principal es "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión LM Note Generator For ESPN Fantasy Football
Descarga archivos de extensión LM Note Generator For ESPN Fantasy Football 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
A simple tool for creating content for your public ESPN fantasy football league. To use the extension, navigate to your ESPN Fantasy Football League Home page (not your team page), and the icon should activate allowing you to launch the popup form. For more instructions check the wiki: https://github.com/jpmayer/fantasy-chrome-extension/wiki Getting Started: https://github.com/jpmayer/fantasy-chrome-extension/wiki/Getting%20Started FAQ: https://github.com/jpmayer/fantasy-chrome-extension/wiki/Frequently-Asked-Questions
Información Básica de la Extensión
Nombre | LM Note Generator For ESPN Fantasy Football |
ID | ahcblhpcealjpkmndgmkdnebbjakicno |
URL Oficial | https://chromewebstore.google.com/detail/lm-note-generator-for-esp/ahcblhpcealjpkmndgmkdnebbjakicno |
Descripción | Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League! |
Tamaño del Archivo | 99.17 KB |
Cantidad de Instalaciones | 1,531 |
Versión Actual | 2.0.0 |
Última Actualización | 2021-09-05 |
Fecha de Publicación | 2018-09-12 |
Calificación | 4.26/5 Total de 42 Calificaciones |
Desarrollador | jpmayerunc |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/jpmayer/fantasy-chrome-extension |
URL de la Página de Ayuda | https://github.com/jpmayer/fantasy-chrome-extension/wiki |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LM Note Generator For ESPN Fantasy Football", "version": "2.0.0", "description": "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!", "permissions": [ "activeTab", "tabs", "declarativeContent", "storage", "http:\/\/games.espn.com\/" ], "background": { "scripts": [ "js\/script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.espn.com\/*", "https:\/\/*.espn.com\/*" ], "js": [ "vendor\/html2canvas.min.js", "js\/screenshot.js" ] } ], "web_accessible_resources": [ "js\/screenshot.js" ], "options_page": "html\/options.html", "page_action": { "default_popup": "html\/popup.html", "default_icon": { "16": "images\/LeagueManagerNoteLogo16-rounded.png", "32": "images\/LeagueManagerNoteLogo32-rounded-monotone.png", "48": "images\/LeagueManagerNoteLogo48-rounded-monotone.png", "128": "images\/LeagueManagerNoteLogo128-rounded-monotone.png" } }, "icons": { "16": "images\/LeagueManagerNoteLogo16-rounded.png", "32": "images\/LeagueManagerNoteLogo32-rounded-monotone.png", "48": "images\/LeagueManagerNoteLogo48-rounded-monotone.png", "128": "images\/LeagueManagerNoteLogo128-rounded-monotone.png" }, "manifest_version": 2 } |