Live cricket scoreboard
This extension shows live scoreboard for a cricket match.
Live cricket scoreboardคืออะไร?
Live cricket scoreboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย abhi และคุณลักษณะหลักของมันคือ "This extension shows live scoreboard for a cricket match."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Live cricket scoreboard
ดาวน์โหลดไฟล์ส่วนขยาย Live cricket scoreboard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
It show you live cricket scores, previous cricket match results and upcoming matches venue and date.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fgpmbmjmcdioelmfkgcfoimlibnnedpa |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/live-cricket-scoreboard/fgpmbmjmcdioelmfkgcfoimlibnnedpa |
คำอธิบาย | This extension shows live scoreboard for a cricket match. |
ขนาดไฟล์ | 164 KB |
จำนวนการติดตั้ง | 187 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2016-01-29 |
วันที่เผยแพร่ | 2016-01-29 |
คะแนน | 3.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | abhi |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Live cricket scoreboard", "description": "This extension shows live scoreboard for a cricket match.", "version": "2.0", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Live Cricket Score!!!" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "css": [ "fix.css" ], "js": [ "live-score.js", "fixtures.js" ] } ], "permissions": [ "storage", "activeTab", "https:\/\/ajax.googleapis.com\/", "http:\/\/*.google.com\/", "https:\/\/*.google.com\/", "http:\/\/*.cricbuzz.com\/" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "fix.css" ] } |