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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |