FootballNotifier

Desktop notifications of goals for selected matches.

Vad är FootballNotifier?

FootballNotifier är en Chrome-tillägg utvecklad av Sports Notifier, och dess huvudfunktion är "Desktop notifications of goals for selected matches.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner FootballNotifier-förlängningens CRX-fil

Ladda ner FootballNotifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
Officiell webbadress https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Beskrivning Desktop notifications of goals for selected matches.
Filstorlek 1.19 MB
Antal Installationer 142
Aktuell Version 1.0
Senast Uppdaterad 2015-03-29
Publiceringsdatum 2015-03-29
Betyg 3.80/5 Totalt 5 Betyg
Utvecklare Sports Notifier
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}