NBA Close Games
Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
¿Qué es NBA Close Games?
NBA Close Games es una extensión de Chrome desarrollada por marcnewport, y su función principal es "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NBA Close Games
Descarga archivos de extensión NBA Close Games 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 chrome extension for http://watch.nba.com that highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
Información Básica de la Extensión
Nombre | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
URL Oficial | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
Descripción | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
Tamaño del Archivo | 17.44 KB |
Cantidad de Instalaciones | 150 |
Versión Actual | 2.2.1 |
Última Actualización | 2018-10-20 |
Fecha de Publicación | 2018-10-20 |
Calificación | 4.67/5 Total de 3 Calificaciones |
Desarrollador | marcnewport |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://marcnewport.com |
URL de la Página de Ayuda | https://github.com/marcnewport/nba-close-games/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NBA Close Games", "description": "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.", "version": "2.2.1", "options_page": "options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "icons": [ "icons\/icon.png", "icons\/icon-disabled.png" ], "default_icon": "icons\/icon-disabled.png" }, "background": { "scripts": [ "js\/background.js", "js\/utils.js", "js\/options.js", "js\/manipulate.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/watch.nba.com\/*" ], "css": [ "css\/manipulate.css" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "activeTab", "tabs", "storage", "https:\/\/stats.nba.com\/*", "https:\/\/data.nba.net\/*", "https:\/\/wikihoops.com\/*" ] } |