Live cricket scoreboard
This extension shows live scoreboard for a cricket match.
Was ist Live cricket scoreboard?
Live cricket scoreboard ist eine Chrome-Erweiterung, die von abhi entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows live scoreboard for a cricket match.".
Erweiterungsscreenshots
Live cricket scoreboard-Erweiterungs-CRX-Datei herunterladen
Laden Sie Live cricket scoreboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
It show you live cricket scores, previous cricket match results and upcoming matches venue and date.
Grundlegende Informationen zur Erweiterung
Name | |
ID | fgpmbmjmcdioelmfkgcfoimlibnnedpa |
Offizielle URL | https://chrome.google.com/webstore/detail/live-cricket-scoreboard/fgpmbmjmcdioelmfkgcfoimlibnnedpa |
Beschreibung | This extension shows live scoreboard for a cricket match. |
Dateigröße | 164 KB |
Installationsanzahl | 187 |
Aktuelle Version | 2.0 |
Letztes Update | 2016-01-29 |
Veröffentlichungsdatum | 2016-01-29 |
Bewertung | 3.00/5 Insgesamt 4 Bewertungen |
Entwickler | abhi |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |