FootballNotifier
Desktop notifications of goals for selected matches.
Wat is FootballNotifier?
FootballNotifier is een Chrome-extensie ontwikkeld door Sports Notifier, en de belangrijkste functie is "Desktop notifications of goals for selected matches.".
Extensie Screenshots
Download het CRX-bestand van de extensie FootballNotifier
Download FootballNotifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | aodfneekmimgoglhaklfnbpnilnoofof |
Officiële URL | https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof |
Beschrijving | Desktop notifications of goals for selected matches. |
Bestandsgrootte | 1.19 MB |
Aantal Installaties | 142 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-03-29 |
Publicatiedatum | 2015-03-29 |
Beoordeling | 3.80/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Sports Notifier |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |