Live cricket scoreboard
This extension shows live scoreboard for a cricket match.
什么是Live cricket scoreboard?
Live cricket scoreboard是由abhi开发的Chrome扩展程序,该扩展的主要功能是“This extension shows live scoreboard for a cricket match.”。
扩展截图
下载Live cricket scoreboard扩展crx文件
下载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" ] } |