CricketNotifier

Desktop notification of fours, sixes and wickets for selected matches

¿Qué es CricketNotifier?

CricketNotifier es una extensión de Chrome desarrollada por Sports Notifier, y su función principal es "Desktop notification of fours, sixes and wickets for selected matches".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión CricketNotifier

Descarga archivos de extensión CricketNotifier 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

                        This extension, first, shows you a list of matches which are currently going on and their current status. You can choose which all matches you want to follow. Now you will get live desktop notifications of any major events (like 4s, 6s and Out) in any of the matches you are following. Clicking on the desktop notification will redirect you to the cricinfo scoreboard.

Post your feedback and let us know what you want to see in the future updates! Thanks.                    

Información Básica de la Extensión

Nombre CricketNotifier CricketNotifier
ID obpgcekdjbdhoomaokckjkiephefcbok
URL Oficial https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok
Descripción Desktop notification of fours, sixes and wickets for selected matches
Tamaño del Archivo 207 KB
Cantidad de Instalaciones 139
Versión Actual 2.2
Última Actualización 2015-03-29
Fecha de Publicación 2015-03-29
Calificación 4.60/5 Total de 10 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": "CricketNotifier",
    "description": "Desktop notification of fours, sixes and wickets for selected matches",
    "version": "2.2",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "cricico.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "getMatches.js"
            ]
        }
    ]
}