CricketNotifier

Desktop notification of fours, sixes and wickets for selected matches

O que é CricketNotifier?

CricketNotifier é uma extensão do Chrome desenvolvida por Sports Notifier, e sua principal característica é "Desktop notification of fours, sixes and wickets for selected matches".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CricketNotifier

Baixe arquivos de extensão CricketNotifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome CricketNotifier CricketNotifier
ID obpgcekdjbdhoomaokckjkiephefcbok
URL Oficial https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok
Descrição Desktop notification of fours, sixes and wickets for selected matches
Tamanho do Arquivo 207 KB
Contagem de Instalações 139
Versão Atual 2.2
Última Atualização 2015-03-29
Data de Publicação 2015-03-29
Classificação 4.60/5 Total de 10 Avaliações
Desenvolvedor Sports Notifier
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}