FootballNotifier

Desktop notifications of goals for selected matches.

Was ist FootballNotifier?

FootballNotifier ist eine Chrome-Erweiterung, die von Sports Notifier entwickelt wurde, und ihr Hauptmerkmal ist "Desktop notifications of goals for selected matches.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

FootballNotifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie FootballNotifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
Offizielle URL https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Beschreibung Desktop notifications of goals for selected matches.
Dateigröße 1.19 MB
Installationsanzahl 142
Aktuelle Version 1.0
Letztes Update 2015-03-29
Veröffentlichungsdatum 2015-03-29
Bewertung 3.80/5 Insgesamt 5 Bewertungen
Entwickler Sports Notifier
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}