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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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