FootballNotifier

Desktop notifications of goals for selected matches.

Hvad er FootballNotifier?

FootballNotifier er en Chrome-udvidelse udviklet af Sports Notifier, og dens hovedfunktion er "Desktop notifications of goals for selected matches.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download FootballNotifier-udvidelses-CRX-fil

Download FootballNotifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
Officiel URL https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Beskrivelse Desktop notifications of goals for selected matches.
Filstørrelse 1.19 MB
Antal Installationer 142
Nuværende Version 1.0
Senest Opdateret 2015-03-29
Udgivelsesdato 2015-03-29
Bedømmelse 3.80/5 Samlet 5 Bedømmelser
Udvikler Sports Notifier
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}