NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
NBA League Pass Spoiler Blocker là gì?
NBA League Pass Spoiler Blocker là một tiện ích mở rộng Chrome được phát triển bởi RT59, và tính năng chính của nó là "A web browser extension to remove spoilers when watching NBA games via League Pass".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NBA League Pass Spoiler Blocker
Tải xuống các tệp mở rộng NBA League Pass Spoiler Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
URL Chính Thức | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
Mô tả | A web browser extension to remove spoilers when watching NBA games via League Pass |
Kích Thước Tệp | 8.58 KB |
Số Lần Cài Đặt | 89 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2020-12-19 |
Ngày Phát Hành | 2020-12-18 |
Nhà Phát Triển | RT59 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
URL Trang Trợ Giúp | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |