NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
Wat is NBA League Pass Spoiler Blocker?
NBA League Pass Spoiler Blocker is een Chrome-extensie ontwikkeld door RT59, en de belangrijkste functie is "A web browser extension to remove spoilers when watching NBA games via League Pass".
Extensie Screenshots
Download het CRX-bestand van de extensie NBA League Pass Spoiler Blocker
Download NBA League Pass Spoiler Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
Officiële URL | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
Beschrijving | A web browser extension to remove spoilers when watching NBA games via League Pass |
Bestandsgrootte | 8.58 KB |
Aantal Installaties | 89 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2020-12-19 |
Publicatiedatum | 2020-12-18 |
Ontwikkelaar | RT59 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
Help Pagina-URL | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
Ondersteunde Talen | 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" } } |