NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
Vad är NBA League Pass Spoiler Blocker?
NBA League Pass Spoiler Blocker är en Chrome-tillägg utvecklad av RT59, och dess huvudfunktion är "A web browser extension to remove spoilers when watching NBA games via League Pass".
Tilläggsskärmbilder
Ladda ner NBA League Pass Spoiler Blocker-förlängningens CRX-fil
Ladda ner NBA League Pass Spoiler Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
Officiell webbadress | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
Beskrivning | A web browser extension to remove spoilers when watching NBA games via League Pass |
Filstorlek | 8.58 KB |
Antal Installationer | 89 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2020-12-19 |
Publiceringsdatum | 2020-12-18 |
Utvecklare | RT59 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
Hjälpsida URL | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
Stödda Språk | 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" } } |