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
官方URL 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"
            ]
        }
    ]
}