CricketNotifier

Desktop notification of fours, sixes and wickets for selected matches

CricketNotifierคืออะไร?

CricketNotifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sports Notifier และคุณลักษณะหลักของมันคือ "Desktop notification of fours, sixes and wickets for selected matches"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CricketNotifier

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}