NBA League Pass Spoiler Blocker
A web browser extension to remove spoilers when watching NBA games via League Pass
什麼是NBA League Pass Spoiler Blocker?
NBA League Pass Spoiler Blocker是由RT59開發的Chrome擴展程式,該擴展的主要功能是“A web browser extension to remove spoilers when watching NBA games via League Pass”。
擴展截圖
下載NBA League Pass Spoiler Blocker擴展crx文件
下載NBA League Pass Spoiler Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | NBA League Pass Spoiler Blocker |
ID | ehcjfedicaeibagngindaebgdaaagpea |
官方網址 | https://chromewebstore.google.com/detail/nba-league-pass-spoiler-b/ehcjfedicaeibagngindaebgdaaagpea |
簡介 | A web browser extension to remove spoilers when watching NBA games via League Pass |
檔案大小 | 8.58 KB |
安裝次數 | 89 |
目前版本 | 1.0.2 |
更新時間 | 2020-12-19 |
上架時間 | 2020-12-18 |
開發者 | RT59 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker |
說明頁面URL | https://github.com/RobTheFiveNine/nba-league-pass-spoiler-blocker/issues |
支援的語言 | 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" } } |