CricketNotifier
Desktop notification of fours, sixes and wickets for selected matches
Cos'è CricketNotifier?
CricketNotifier è un'estensione di Chrome sviluppata da Sports Notifier, e la sua funzione principale è "Desktop notification of fours, sixes and wickets for selected matches".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CricketNotifier
Scarica i file di estensione CricketNotifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | obpgcekdjbdhoomaokckjkiephefcbok |
URL Ufficiale | https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok |
Descrizione | Desktop notification of fours, sixes and wickets for selected matches |
Dimensione del File | 207 KB |
Conteggio Installazioni | 139 |
Versione Corrente | 2.2 |
Ultimo Aggiornamento | 2015-03-29 |
Data di Pubblicazione | 2015-03-29 |
Valutazione | 4.60/5 Totale 10 Valutazioni |
Sviluppatore | Sports Notifier |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |