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
公式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"
            ]
        }
    ]
}