FootballNotifier

Desktop notifications of goals for selected matches.

O que é FootballNotifier?

FootballNotifier é uma extensão do Chrome desenvolvida por Sports Notifier, e sua principal característica é "Desktop notifications of goals for selected matches.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão FootballNotifier

Baixe arquivos de extensão FootballNotifier 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

                        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.                    

Informações Básicas da Extensão

Nome FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
URL Oficial https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Descrição Desktop notifications of goals for selected matches.
Tamanho do Arquivo 1.19 MB
Contagem de Instalações 142
Versão Atual 1.0
Última Atualização 2015-03-29
Data de Publicação 2015-03-29
Classificação 3.80/5 Total de 5 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": "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"
            ]
        }
    ]
}