MLBoxcard

Gives daily boxscores for MLB games in a formatted toolbar for anypage.

什么是MLBoxcard?

MLBoxcard是由sdpetrides开发的Chrome扩展程序,该扩展的主要功能是“Gives daily boxscores for MLB games in a formatted toolbar for anypage.”。

扩展截图

screenshot

下载MLBoxcard扩展crx文件

下载MLBoxcard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        MLBoxscore

The MLBoxscore is Chrome extension that displays a toolbar with daily boxscores for MLB games.

Features and Options

Scores are reloaded each time a page is reloaded. To reload the scores without reloading the page, choose the Update button in the upper right corner.

To hide the toolbar temporarily, click the Hide button in the upper right corner. Because elements and styles are injecting into the page, the toolbar may not render correctly for each domain. In these situations, the Hide option is most useful.

Copyright
Created and developed by Stephen Petrides in 2016.                    

扩展基本信息

名称 MLBoxcard MLBoxcard
ID npfplangdaaldgneklfajkmheecgcfgm
官方URL https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm
简介 Gives daily boxscores for MLB games in a formatted toolbar for anypage.
文件大小 10.41 KB
安装次数 23
当前版本 1.0
更新时间 2016-08-16
上架时间 2016-08-16
评分 3.00/5 共2次评分
开发者 sdpetrides
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MLBoxcard",
    "description": "Gives daily boxscores for MLB games in a formatted toolbar for anypage.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "MLBoxcard"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.google.com\/*",
                "https:\/\/*.reddit.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "toolbar.js",
                "statsapi.js"
            ],
            "css": [
                "toolbar.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "",
        "background"
    ],
    "manifest_version": 2
}