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"
            ]
        }
    ]
}