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是由RT59开发的Chrome扩展程序,该扩展的主要功能是“A web browser extension to remove spoilers when watching NBA games via League Pass”。

扩展截图

screenshot
screenshot

下载NBA League Pass Spoiler Blocker扩展crx文件

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