NBA League Pass Spoiler Blocker

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

Cos'è NBA League Pass Spoiler Blocker?

NBA League Pass Spoiler Blocker è un'estensione di Chrome sviluppata da RT59, e la sua funzione principale è "A web browser extension to remove spoilers when watching NBA games via League Pass".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione NBA League Pass Spoiler Blocker

Scarica i file di estensione NBA League Pass Spoiler Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome NBA League Pass Spoiler Blocker NBA League Pass Spoiler Blocker
ID ehcjfedicaeibagngindaebgdaaagpea
URL Ufficiale https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea
Descrizione A web browser extension to remove spoilers when watching NBA games via League Pass
Dimensione del File 8.58 KB
Conteggio Installazioni 89
Versione Corrente 1.0.2
Ultimo Aggiornamento 2020-12-19
Data di Pubblicazione 2020-12-18
Sviluppatore RT59
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker
URL della Pagina di Aiuto https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues
Lingue Supportate 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"
    }
}