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"
    }
}