NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
Hvad er NBA League Pass Spoiler Blocker?
NBA League Pass Spoiler Blocker er en Chrome-udvidelse udviklet af RT59, og dens hovedfunktion er "A web browser extension to remove spoilers when watching NBA games via League Pass".
Udvidelsesskærmbilleder
Download NBA League Pass Spoiler Blocker-udvidelses-CRX-fil
Download NBA League Pass Spoiler Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
Officiel URL | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
Beskrivelse | A web browser extension to remove spoilers when watching NBA games via League Pass |
Filstørrelse | 8.58 KB |
Antal Installationer | 89 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2020-12-19 |
Udgivelsesdato | 2020-12-18 |
Udvikler | RT59 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
Hjælpeside-URL | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
Understøttede Sprog | 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" } } |