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