FootballNotifier

Desktop notifications of goals for selected matches.

什麼是FootballNotifier?

FootballNotifier是由Sports Notifier開發的Chrome擴展程式,該擴展的主要功能是“Desktop notifications of goals for selected matches.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載FootballNotifier擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}