Hide The Scores! (in NBA League Pass)

Hide all scores in the NBA League Pass game page.

Co je Hide The Scores! (in NBA League Pass)?

Hide The Scores! (in NBA League Pass) je rozšíření Chrome vyvinuté jorge.silva.jetter, a jeho hlavní funkcí je „Hide all scores in the NBA League Pass game page.“.

Stáhnout soubor CRX rozšíření Hide The Scores! (in NBA League Pass)

Stáhněte si soubory rozšíření Hide The Scores! (in NBA League Pass) 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í

                        Hide all scores in the NBA League Pass game page.

It's really annoying watching a game on NBA League Pass and seeing the score at the same time! Specially when the feed is behind and YOU NOW KNOW WHAT GOING TO HAPPEN! Fix all that by just hiding all the scores! 

This extension only adds one line of CSS to add the scores, so it won't make your pages load any slower or run any code at all.                    

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

Název Hide The Scores! (in NBA League Pass) Hide The Scores! (in NBA League Pass)
ID adabhlmohojcielbiknhlcmapbidbnkp
Oficiální URL https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp
Popis Hide all scores in the NBA League Pass game page.
Velikost souboru 5.47 KB
Počet instalací 61
Aktuální Verze 0.0.1
Poslední Aktualizace 2017-01-21
Datum Vydání 2017-01-21
Vývojář jorge.silva.jetter
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide The Scores! (in NBA League Pass)",
    "description": "Hide all scores in the NBA League Pass game page.",
    "manifest_version": 2,
    "version": "0.0.1",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.nba.com\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/www.nba.com\/*"
    ]
}