FootballNotifier
Desktop notifications of goals for selected matches.
Apa itu FootballNotifier?
FootballNotifier adalah ekstensi Chrome yang dikembangkan oleh Sports Notifier, dan fitur utamanya adalah "Desktop notifications of goals for selected matches.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi FootballNotifier
Unduh file ekstensi FootballNotifier 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
Using this extension, you get a list of live as well as recent upcoming/concluded matches along with their live score and a short summary. You can select the matches for which you want the desktop notifications. Once you do that, there will be desktop notifications for every goal, yellow card, red cards for only the live matches. Please post your feedback/bugs if any and let us know what you want to see in the future updates! Thanks.
Informasi Dasar Ekstensi
Nama | |
ID | aodfneekmimgoglhaklfnbpnilnoofof |
URL Resmi | https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof |
Deskripsi | Desktop notifications of goals for selected matches. |
Ukuran File | 1.19 MB |
Jumlah Instalasi | 142 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2015-03-29 |
Tanggal Publikasi | 2015-03-29 |
Penilaian | 3.80/5 Total 5 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": "FootballNotifier", "description": "Desktop notifications of goals for selected matches.", "version": "1.0", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "notifications" ], "browser_action": { "default_icon": "football.png", "default_popup": "popup.html" }, "background": { "page": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "getMatches.js" ] } ] } |