Hide The Scores! (in NBA League Pass)

Hide all scores in the NBA League Pass game page.

¿Qué es Hide The Scores! (in NBA League Pass)?

Hide The Scores! (in NBA League Pass) es una extensión de Chrome desarrollada por jorge.silva.jetter, y su función principal es "Hide all scores in the NBA League Pass game page.".

Descargar Archivo CRX de la Extensión Hide The Scores! (in NBA League Pass)

Descarga archivos de extensión Hide The Scores! (in NBA League Pass) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Hide The Scores! (in NBA League Pass) Hide The Scores! (in NBA League Pass)
ID adabhlmohojcielbiknhlcmapbidbnkp
URL Oficial https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp
Descripción Hide all scores in the NBA League Pass game page.
Tamaño del Archivo 5.47 KB
Cantidad de Instalaciones 61
Versión Actual 0.0.1
Última Actualización 2017-01-21
Fecha de Publicación 2017-01-21
Desarrollador jorge.silva.jetter
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}