FootballNotifier

Desktop notifications of goals for selected matches.

Что такое FootballNotifier?

FootballNotifier - это расширение Chrome, разработанное Sports Notifier, и его основная функция - "Desktop notifications of goals for selected matches.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения FootballNotifier

Скачайте файлы расширений FootballNotifier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
Официальный URL https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Описание Desktop notifications of goals for selected matches.
Размер файла 1.19 MB
Количество установок 142
Текущая Версия 1.0
Последнее Обновление 2015-03-29
Дата публикации 2015-03-29
Рейтинг 3.80/5 Всего 5 оценок
Разработчик Sports Notifier
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}