NBA League Pass Spoiler Blocker

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

Τι είναι το NBA League Pass Spoiler Blocker;

Το NBA League Pass Spoiler Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον RT59, και η κύρια λειτουργία του είναι "A web browser extension to remove spoilers when watching NBA games via League Pass".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης NBA League Pass Spoiler Blocker

Λήψη αρχείων επέκτασης NBA League Pass Spoiler Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα NBA League Pass Spoiler Blocker NBA League Pass Spoiler Blocker
ID ehcjfedicaeibagngindaebgdaaagpea
Επίσημο URL https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea
Περιγραφή A web browser extension to remove spoilers when watching NBA games via League Pass
Μέγεθος Αρχείου 8.58 KB
Αριθμός Εγκαταστάσεων 89
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2020-12-19
Ημερομηνία Δημοσίευσης 2020-12-18
Προγραμματιστής RT59
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues
Υποστηριζόμενες Γλώσσες 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"
    }
}