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.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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.                    

拡張機能の基本情報

名前 Live cricket scoreboard Live cricket scoreboard
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"
    ]
}