FootballNotifier

Desktop notifications of goals for selected matches.

FootballNotifier là gì?

FootballNotifier là một tiện ích mở rộng Chrome được phát triển bởi Sports Notifier, và tính năng chính của nó là "Desktop notifications of goals for selected matches.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng FootballNotifier

Tải xuống các tệp mở rộng FootballNotifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
URL Chính Thức https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
Mô tả Desktop notifications of goals for selected matches.
Kích Thước Tệp 1.19 MB
Số Lần Cài Đặt 142
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-03-29
Ngày Phát Hành 2015-03-29
Đánh Giá 3.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Sports Notifier
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}