FootballNotifier

Desktop notifications of goals for selected matches.

Co je FootballNotifier?

FootballNotifier je rozšíření Chrome vyvinuté Sports Notifier, a jeho hlavní funkcí je „Desktop notifications of goals for selected matches.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření FootballNotifier

Stáhněte si soubory rozšíření FootballNotifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
Oficiální URL https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Popis Desktop notifications of goals for selected matches.
Velikost souboru 1.19 MB
Počet instalací 142
Aktuální Verze 1.0
Poslední Aktualizace 2015-03-29
Datum Vydání 2015-03-29
Hodnocení 3.80/5 Celkem 5 Hodnocení
Vývojář Sports Notifier
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}