FootballNotifier
Desktop notifications of goals for selected matches.
Τι είναι το FootballNotifier;
Το FootballNotifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sports Notifier, και η κύρια λειτουργία του είναι "Desktop notifications of goals for selected matches.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης FootballNotifier
Λήψη αρχείων επέκτασης FootballNotifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | aodfneekmimgoglhaklfnbpnilnoofof |
Επίσημο URL | https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof |
Περιγραφή | Desktop notifications of goals for selected matches. |
Μέγεθος Αρχείου | 1.19 MB |
Αριθμός Εγκαταστάσεων | 142 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2015-03-29 |
Ημερομηνία Δημοσίευσης | 2015-03-29 |
Αξιολόγηση | 3.80/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Sports Notifier |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |