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" ] } ] } |