Live cricket scoreboard
This extension shows live scoreboard for a cricket match.
Live cricket scoreboard là gì?
Live cricket scoreboard là một tiện ích mở rộng Chrome được phát triển bởi abhi, và tính năng chính của nó là "This extension shows live scoreboard for a cricket match.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Live cricket scoreboard
Tải xuống các tệp mở rộng Live cricket scoreboard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
It show you live cricket scores, previous cricket match results and upcoming matches venue and date.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fgpmbmjmcdioelmfkgcfoimlibnnedpa |
URL Chính Thức | https://chrome.google.com/webstore/detail/live-cricket-scoreboard/fgpmbmjmcdioelmfkgcfoimlibnnedpa |
Mô tả | This extension shows live scoreboard for a cricket match. |
Kích Thước Tệp | 164 KB |
Số Lần Cài Đặt | 187 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2016-01-29 |
Ngày Phát Hành | 2016-01-29 |
Đánh Giá | 3.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | abhi |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |