Live cricket scoreboard
This extension shows live scoreboard for a cricket match.
Apa itu Live cricket scoreboard?
Live cricket scoreboard adalah ekstensi Chrome yang dikembangkan oleh abhi, dan fitur utamanya adalah "This extension shows live scoreboard for a cricket match.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Live cricket scoreboard
Unduh file ekstensi Live cricket scoreboard dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
It show you live cricket scores, previous cricket match results and upcoming matches venue and date.
Informasi Dasar Ekstensi
Nama | |
ID | fgpmbmjmcdioelmfkgcfoimlibnnedpa |
URL Resmi | https://chrome.google.com/webstore/detail/live-cricket-scoreboard/fgpmbmjmcdioelmfkgcfoimlibnnedpa |
Deskripsi | This extension shows live scoreboard for a cricket match. |
Ukuran File | 164 KB |
Jumlah Instalasi | 187 |
Versi Saat Ini | 2.0 |
Terakhir Diperbarui | 2016-01-29 |
Tanggal Publikasi | 2016-01-29 |
Penilaian | 3.00/5 Total 4 Penilaian |
Pengembang | abhi |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |