NBA Stats Wizard

Optimize nba.com boxscore page for viewing

¿Qué es NBA Stats Wizard?

NBA Stats Wizard es una extensión de Chrome desarrollada por NBAStatsWizard, y su función principal es "Optimize nba.com boxscore page for viewing".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión NBA Stats Wizard

Descarga archivos de extensión NBA Stats Wizard en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Have you been finding yourself lost on the nba.com boxscore page? this light extension will highlight all that matters to you so you could keep track of your favorite team and players.

★ Sticky table headers when you scroll down
★ Highlight rows and columns on mouse hover
★ Colorize notable stats and team leaders
★ Localized time for upcoming games @ www.nba.com/games
★ Remove DNP player rows in finished games

It works on any nba.com boxscore page and for every game, just navigate to a game's boxscore and watch the magic!
Screenshots taken from:
https://www.nba.com/game/lal-vs-mil-0022000226/box-score

You're welcome to send feature requests and bug reports as I will try and keep it updated.

IMPORTANT - this extension is and always will be for free, and will NEVER include ads. It was made for my own personal use and thought I should share it with the world.

Hope you'll enjoy it!



Changelog:
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
➤ 1.3.87:
  • |🛠️Fix| localized game times

➤ 1.3.7:
  • |🛠️Fix| wizard didn't recognize live games which caused "player to watch" feature to break as well, I hadn't watched much live games this season so 
    can't really tell how long it was broken 😇

➤ 1.3.6:
	• |🛠️Fix| hide live scoreboard on top of the page (to enable more of the table to be seen in order to minimize the need for scrolling while viewing/
    analyzing boxscore), again due to changes by "nba.com" web developers 😅
	
➤ 1.3.3 + 1.3.4 + 1.3.5:
    • |🛠️Fix| update local times due to nba.com team's change
    • |🛠️Fix| update local times, when changing date due to changes by "nba.com" web developers

➤ 1.3.2:
    • |🌟New| add player to watch volume control on popup
    
➤ 1.3.0:
    • |🛠️Fix| adjust wizard to work on the updated nba.com 
      HTML hierarchy which broke several features
    •  Add Player To Watch (PTW) doorbell alert each time the 
      chosen player enters the game + adds minutes tracker fixed on top 
      left corner when enabled
    • |🌟New| Add extension popup with new features:
             ✔  PTW control on/off
             ✔  Global user preferences 
             ✔  More to come
    • |🌟New| Add percentage symbol in each fg%, 3pt% and ft% columns
    • |🛠️Fix| fix minor bug on localized gametimes on several 
      timezones


➤ 1.2.2:
    • |📈Update| localized time displayed in 24 hour format to avoid 
      ambiguity
    • |🛠️Fix| sluggish row/column highlight when staying in a live game 
      page for a long time without refreshing

➤ 1.2.1:
    • |🌟New| wizard now updates table cells in real-time during live 
       games (experimental)

➤ 1.2.0:
    • |🌟New| colorize player name cells + team header according to 
       its respective colors
    • |🌟New| zoom first row and column of currently hovered cell
    • |🌟New| localized time of a game above the ET time which is 
       displayed by default in the nba.com/games list

➤ 1.1.0:
    • |🌟New| wizard supports different periods such as quarter or half
    • |🌟New| sticky headers when you scroll past the table header                    

Información Básica de la Extensión

Nombre NBA Stats Wizard NBA Stats Wizard
ID plhekifidbecidebmmhjibhfkcbeimkn
URL Oficial https://chromewebstore.google.com/detail/nba-stats-wizard/plhekifidbecidebmmhjibhfkcbeimkn
Descripción Optimize nba.com boxscore page for viewing
Tamaño del Archivo 188 KB
Cantidad de Instalaciones 83
Versión Actual 1.3.87
Última Actualización 2023-11-12
Fecha de Publicación 2021-01-05
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador NBAStatsWizard
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NBA Stats Wizard",
    "version": "1.3.87",
    "manifest_version": 3,
    "description": "Optimize nba.com boxscore page for viewing",
    "default_locale": "en",
    "action": {
        "default_popup": "src\/page_action\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/ui\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nba.com\/game\/*"
            ],
            "css": [
                "src\/inject\/nbacom.css"
            ],
            "js": [
                "src\/inject\/nbacom.js",
                "src\/inject\/jquery-3.5.1.slim.min.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.nba.com\/games*"
            ],
            "js": [
                "src\/inject\/gametimes.js",
                "src\/inject\/jquery-3.5.1.slim.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}