NBA League Pass Spoiler Blocker

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

Apa itu NBA League Pass Spoiler Blocker?

NBA League Pass Spoiler Blocker adalah ekstensi Chrome yang dikembangkan oleh RT59, dan fitur utamanya adalah "A web browser extension to remove spoilers when watching NBA games via League Pass".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi NBA League Pass Spoiler Blocker

Unduh file ekstensi NBA League Pass Spoiler Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama NBA League Pass Spoiler Blocker NBA League Pass Spoiler Blocker
ID ehcjfedicaeibagngindaebgdaaagpea
URL Resmi https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea
Deskripsi A web browser extension to remove spoilers when watching NBA games via League Pass
Ukuran File 8.58 KB
Jumlah Instalasi 89
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2020-12-19
Tanggal Publikasi 2020-12-18
Pengembang RT59
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker
URL Halaman Bantuan https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues
Bahasa yang Didukung 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"
    }
}