FootballNotifier
Desktop notifications of goals for selected matches.
¿Qué es FootballNotifier?
FootballNotifier es una extensión de Chrome desarrollada por Sports Notifier, y su función principal es "Desktop notifications of goals for selected matches.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión FootballNotifier
Descarga archivos de extensión FootballNotifier 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
Using this extension, you get a list of live as well as recent upcoming/concluded matches along with their live score and a short summary. You can select the matches for which you want the desktop notifications. Once you do that, there will be desktop notifications for every goal, yellow card, red cards for only the live matches. Please post your feedback/bugs if any and let us know what you want to see in the future updates! Thanks.
Información Básica de la Extensión
Nombre | |
ID | aodfneekmimgoglhaklfnbpnilnoofof |
URL Oficial | https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof |
Descripción | Desktop notifications of goals for selected matches. |
Tamaño del Archivo | 1.19 MB |
Cantidad de Instalaciones | 142 |
Versión Actual | 1.0 |
Última Actualización | 2015-03-29 |
Fecha de Publicación | 2015-03-29 |
Calificación | 3.80/5 Total de 5 Calificaciones |
Desarrollador | Sports Notifier |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FootballNotifier", "description": "Desktop notifications of goals for selected matches.", "version": "1.0", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "notifications" ], "browser_action": { "default_icon": "football.png", "default_popup": "popup.html" }, "background": { "page": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "getMatches.js" ] } ] } |