Hide The Scores! (in NBA League Pass)

Hide all scores in the NBA League Pass game page.

Was ist Hide The Scores! (in NBA League Pass)?

Hide The Scores! (in NBA League Pass) ist eine Chrome-Erweiterung, die von jorge.silva.jetter entwickelt wurde, und ihr Hauptmerkmal ist "Hide all scores in the NBA League Pass game page.".

Hide The Scores! (in NBA League Pass)-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hide The Scores! (in NBA League Pass)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Hide The Scores! (in NBA League Pass) Hide The Scores! (in NBA League Pass)
ID adabhlmohojcielbiknhlcmapbidbnkp
Offizielle URL https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp
Beschreibung Hide all scores in the NBA League Pass game page.
Dateigröße 5.47 KB
Installationsanzahl 61
Aktuelle Version 0.0.1
Letztes Update 2017-01-21
Veröffentlichungsdatum 2017-01-21
Entwickler jorge.silva.jetter
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}