FootballNotifier

Desktop notifications of goals for selected matches.

What is FootballNotifier?

FootballNotifier is a Chrome extension developed by Sports Notifier, and its main feature is "Desktop notifications of goals for selected matches.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download FootballNotifier Extension CRX File

Download FootballNotifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
Official URL https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Description Desktop notifications of goals for selected matches.
File Size 1.19 MB
Installation Count 142
Current Version 1.0
Last Updated 2015-03-29
Publish Date 2015-03-29
Rating 3.80/5 Total 5 Ratings
Developer Sports Notifier
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}