NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
¿Qué es NBA League Pass Spoiler Blocker?
NBA League Pass Spoiler Blocker es una extensión de Chrome desarrollada por RT59, y su función principal es "A web browser extension to remove spoilers when watching NBA games via League Pass".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NBA League Pass Spoiler Blocker
Descarga archivos de extensión NBA League Pass Spoiler Blocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
URL Oficial | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
Descripción | A web browser extension to remove spoilers when watching NBA games via League Pass |
Tamaño del Archivo | 8.58 KB |
Cantidad de Instalaciones | 89 |
Versión Actual | 1.0.2 |
Última Actualización | 2020-12-19 |
Fecha de Publicación | 2020-12-18 |
Desarrollador | RT59 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
URL de la Página de Ayuda | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
Idiomas Soportados | 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" } } |