FootballNotifier

Desktop notifications of goals for selected matches.

Cos'è FootballNotifier?

FootballNotifier è un'estensione di Chrome sviluppata da Sports Notifier, e la sua funzione principale è "Desktop notifications of goals for selected matches.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione FootballNotifier

Scarica i file di estensione FootballNotifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
URL Ufficiale https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Descrizione Desktop notifications of goals for selected matches.
Dimensione del File 1.19 MB
Conteggio Installazioni 142
Versione Corrente 1.0
Ultimo Aggiornamento 2015-03-29
Data di Pubblicazione 2015-03-29
Valutazione 3.80/5 Totale 5 Valutazioni
Sviluppatore Sports Notifier
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}