NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
What is NBA League Pass Spoiler Blocker?
NBA League Pass Spoiler Blocker is a Chrome extension developed by RT59, and its main feature is "A web browser extension to remove spoilers when watching NBA games via League Pass".
Extension Screenshots
Download NBA League Pass Spoiler Blocker Extension CRX File
Download NBA League Pass Spoiler Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
Official URL | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
Description | A web browser extension to remove spoilers when watching NBA games via League Pass |
File Size | 8.58 KB |
Installation Count | 89 |
Current Version | 1.0.2 |
Last Updated | 2020-12-19 |
Publish Date | 2020-12-18 |
Developer | RT59 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
Help Page URL | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
Supported Languages | 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" } } |