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
Eメール [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"
    }
}