CricketNotifier
Desktop notification of fours, sixes and wickets for selected matches
Apa itu CricketNotifier?
CricketNotifier adalah ekstensi Chrome yang dikembangkan oleh Sports Notifier, dan fitur utamanya adalah "Desktop notification of fours, sixes and wickets for selected matches".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi CricketNotifier
Unduh file ekstensi CricketNotifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | obpgcekdjbdhoomaokckjkiephefcbok |
URL Resmi | https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok |
Deskripsi | Desktop notification of fours, sixes and wickets for selected matches |
Ukuran File | 207 KB |
Jumlah Instalasi | 139 |
Versi Saat Ini | 2.2 |
Terakhir Diperbarui | 2015-03-29 |
Tanggal Publikasi | 2015-03-29 |
Penilaian | 4.60/5 Total 10 Penilaian |
Pengembang | Sports Notifier |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |