CricketNotifier

Desktop notification of fours, sixes and wickets for selected matches

什麼是CricketNotifier?

CricketNotifier是由Sports Notifier開發的Chrome擴展程式,該擴展的主要功能是“Desktop notification of fours, sixes and wickets for selected matches”。

擴展截圖

screenshot

下載CricketNotifier擴展crx文件

下載CricketNotifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension, first, shows you a list of matches which are currently going on and their current status. You can choose which all matches you want to follow. Now you will get live desktop notifications of any major events (like 4s, 6s and Out) in any of the matches you are following. Clicking on the desktop notification will redirect you to the cricinfo scoreboard.

Post your feedback and let us know what you want to see in the future updates! Thanks.                    

擴展基本資訊

名稱 CricketNotifier CricketNotifier
ID obpgcekdjbdhoomaokckjkiephefcbok
官方網址 https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok
簡介 Desktop notification of fours, sixes and wickets for selected matches
檔案大小 207 KB
安裝次數 139
目前版本 2.2
更新時間 2015-03-29
上架時間 2015-03-29
評分 4.60/5 共 10 次評分
開發者 Sports Notifier
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CricketNotifier",
    "description": "Desktop notification of fours, sixes and wickets for selected matches",
    "version": "2.2",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "cricico.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "getMatches.js"
            ]
        }
    ]
}