NBA League Pass Spoiler Blocker

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

Qu'est-ce que NBA League Pass Spoiler Blocker ?

NBA League Pass Spoiler Blocker est une extension Chrome développée par RT59, et sa fonction principale est "A web browser extension to remove spoilers when watching NBA games via League Pass".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension NBA League Pass Spoiler Blocker

Téléchargez les fichiers d'extension NBA League Pass Spoiler Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom NBA League Pass Spoiler Blocker NBA League Pass Spoiler Blocker
ID ehcjfedicaeibagngindaebgdaaagpea
URL Officiel https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea
Description A web browser extension to remove spoilers when watching NBA games via League Pass
Taille du Fichier 8.58 KB
Nombre d'Installations 89
Version Actuelle 1.0.2
Dernière Mise à Jour 2020-12-19
Date de Publication 2020-12-18
Développeur RT59
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker
URL de la Page d'Aide https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues
Langues Prises en Charge 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"
    }
}