MLBoxcard

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

Co je MLBoxcard?

MLBoxcard je rozšíření Chrome vyvinuté sdpetrides, a jeho hlavní funkcí je „Gives daily boxscores for MLB games in a formatted toolbar for anypage.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření MLBoxcard

Stáhněte si soubory rozšíření MLBoxcard ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název MLBoxcard MLBoxcard
ID npfplangdaaldgneklfajkmheecgcfgm
Oficiální URL https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm
Popis Gives daily boxscores for MLB games in a formatted toolbar for anypage.
Velikost souboru 10.41 KB
Počet instalací 23
Aktuální Verze 1.0
Poslední Aktualizace 2016-08-16
Datum Vydání 2016-08-16
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář sdpetrides
Typ Platby free
Podporované Jazyky 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
}