NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
Co to jest NBA League Pass Spoiler Blocker?
NBA League Pass Spoiler Blocker to rozszerzenie Chrome opracowane przez RT59, a jego główną funkcją jest „A web browser extension to remove spoilers when watching NBA games via League Pass”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia NBA League Pass Spoiler Blocker
Pobierz pliki rozszerzeń NBA League Pass Spoiler Blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
Oficjalny URL | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
Opis | A web browser extension to remove spoilers when watching NBA games via League Pass |
Rozmiar pliku | 8.58 KB |
Liczba instalacji | 89 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2020-12-19 |
Data Publikacji | 2020-12-18 |
Deweloper | RT59 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
Adres URL Strony Pomocy | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
Obsługiwane Języki | 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" } } |