FootballNotifier
Desktop notifications of goals for selected matches.
Qu'est-ce que FootballNotifier ?
FootballNotifier est une extension Chrome développée par Sports Notifier, et sa fonction principale est "Desktop notifications of goals for selected matches.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension FootballNotifier
Téléchargez les fichiers d'extension FootballNotifier 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
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.
Informations de Base sur l'Extension
Nom | |
ID | aodfneekmimgoglhaklfnbpnilnoofof |
URL Officiel | https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof |
Description | Desktop notifications of goals for selected matches. |
Taille du Fichier | 1.19 MB |
Nombre d'Installations | 142 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-03-29 |
Date de Publication | 2015-03-29 |
Évaluation | 3.80/5 Total 5 É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": "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" ] } ] } |