CricketNotifier
Desktop notification of fours, sixes and wickets for selected matches
CricketNotifierとは何ですか?
CricketNotifierはSports Notifierによって開発されたChromeの拡張機能で、その主な機能は「Desktop notification of fours, sixes and wickets for selected matches」です。
拡張機能のスクリーンショット
CricketNotifier拡張機能のCRXファイルをダウンロード
CricketNotifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | obpgcekdjbdhoomaokckjkiephefcbok |
公式URL | https://chrome.google.com/webstore/detail/cricketnotifier/obpgcekdjbdhoomaokckjkiephefcbok |
説明 | Desktop notification of fours, sixes and wickets for selected matches |
ファイルサイズ | 207 KB |
インストール数 | 139 |
現在のバージョン | 2.2 |
最終更新日 | 2015-03-29 |
公開日 | 2015-03-29 |
評価 | 4.60/5 合計 10 レビュー |
開発者 | Sports Notifier |
支払い方法 | free |
対応言語 | 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" ] } ] } |