CricketNotifier

Desktop notification of fours, sixes and wickets for selected matches

Was ist CricketNotifier?

CricketNotifier ist eine Chrome-Erweiterung, die von Sports Notifier entwickelt wurde, und ihr Hauptmerkmal ist "Desktop notification of fours, sixes and wickets for selected matches".

Erweiterungsscreenshots

screenshot

CricketNotifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie CricketNotifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CricketNotifier CricketNotifier
ID obpgcekdjbdhoomaokckjkiephefcbok
Offizielle URL https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok
Beschreibung Desktop notification of fours, sixes and wickets for selected matches
Dateigröße 207 KB
Installationsanzahl 139
Aktuelle Version 2.2
Letztes Update 2015-03-29
Veröffentlichungsdatum 2015-03-29
Bewertung 4.60/5 Insgesamt 10 Bewertungen
Entwickler Sports Notifier
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}