FootballNotifier

Desktop notifications of goals for selected matches.

Co to jest FootballNotifier?

FootballNotifier to rozszerzenie Chrome opracowane przez Sports Notifier, a jego główną funkcją jest „Desktop notifications of goals for selected matches.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia FootballNotifier

Pobierz pliki rozszerzeń FootballNotifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
Oficjalny URL https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Opis Desktop notifications of goals for selected matches.
Rozmiar pliku 1.19 MB
Liczba instalacji 142
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-03-29
Data Publikacji 2015-03-29
Ocena 3.80/5 Łącznie 5 Oceny
Deweloper Sports Notifier
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}