CricketNotifier
Desktop notification of fours, sixes and wickets for selected matches
Qu'est-ce que CricketNotifier ?
CricketNotifier est une extension Chrome développée par Sports Notifier, et sa fonction principale est "Desktop notification of fours, sixes and wickets for selected matches".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CricketNotifier
Téléchargez les fichiers d'extension CricketNotifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | obpgcekdjbdhoomaokckjkiephefcbok |
URL Officiel | https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok |
Description | Desktop notification of fours, sixes and wickets for selected matches |
Taille du Fichier | 207 KB |
Nombre d'Installations | 139 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2015-03-29 |
Date de Publication | 2015-03-29 |
Évaluation | 4.60/5 Total 10 Évaluations |
Développeur | Sports Notifier |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |