CricketNotifier
Desktop notification of fours, sixes and wickets for selected matches
Co je CricketNotifier?
CricketNotifier je rozšíření Chrome vyvinuté Sports Notifier, a jeho hlavní funkcí je „Desktop notification of fours, sixes and wickets for selected matches“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření CricketNotifier
Stáhněte si soubory rozšíření CricketNotifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | obpgcekdjbdhoomaokckjkiephefcbok |
Oficiální URL | https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok |
Popis | Desktop notification of fours, sixes and wickets for selected matches |
Velikost souboru | 207 KB |
Počet instalací | 139 |
Aktuální Verze | 2.2 |
Poslední Aktualizace | 2015-03-29 |
Datum Vydání | 2015-03-29 |
Hodnocení | 4.60/5 Celkem 10 Hodnocení |
Vývojář | Sports Notifier |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |