NBA League Pass Spoiler Blocker

A web browser extension to remove spoilers when watching NBA games via League Pass

Was ist NBA League Pass Spoiler Blocker?

NBA League Pass Spoiler Blocker ist eine Chrome-Erweiterung, die von RT59 entwickelt wurde, und ihr Hauptmerkmal ist "A web browser extension to remove spoilers when watching NBA games via League Pass".

Erweiterungsscreenshots

screenshot
screenshot

NBA League Pass Spoiler Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie NBA League Pass Spoiler Blocker-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

                        The recent updates to NBA League Pass have resulted in several user interface issues which make it near impossible to watch a game without first seeing spoilers; this extension aims to mitigate that.

This extension will automatically enable the "Hide Scores" feature on League Pass and will also remove the background news story which shows the outcome / summary of the game when you click the "Watch Game" option.

The extension is open-source, for anyone wanting to review how it works. You can find the link to the GitHub repository in the URLs section below.

Change Log
==========
- Version 1.0.2
   + Improve reliability of enabling the hide score function
   + Fix a bug causing video to be hidden                    

Grundlegende Informationen zur Erweiterung

Name NBA League Pass Spoiler Blocker NBA League Pass Spoiler Blocker
ID ehcjfedicaeibagngindaebgdaaagpea
Offizielle URL https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea
Beschreibung A web browser extension to remove spoilers when watching NBA games via League Pass
Dateigröße 8.58 KB
Installationsanzahl 89
Aktuelle Version 1.0.2
Letztes Update 2020-12-19
Veröffentlichungsdatum 2020-12-18
Entwickler RT59
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker
Hilfeseite URL https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NBA League Pass Spoiler Blocker",
    "version": "1.0.2",
    "description": "A web browser extension to remove spoilers when watching NBA games via League Pass",
    "homepage_url": "https:\/\/github.com\/RobTheFiveNine\/nba-league-pass-spoiler-blocker",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nba.com\/games*",
                "https:\/\/www.nba.com\/game\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon.png",
        "32": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    }
}