MLBoxcard

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

O que é MLBoxcard?

MLBoxcard é uma extensão do Chrome desenvolvida por sdpetrides, e sua principal característica é "Gives daily boxscores for MLB games in a formatted toolbar for anypage.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MLBoxcard

Baixe arquivos de extensão MLBoxcard no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome MLBoxcard MLBoxcard
ID npfplangdaaldgneklfajkmheecgcfgm
URL Oficial https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm
Descrição Gives daily boxscores for MLB games in a formatted toolbar for anypage.
Tamanho do Arquivo 10.41 KB
Contagem de Instalações 23
Versão Atual 1.0
Última Atualização 2016-08-16
Data de Publicação 2016-08-16
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor sdpetrides
Tipo de Pagamento free
Idiomas Suportados 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
}