NBA Stats Wizard

Optimize nba.com boxscore page for viewing

Vad är NBA Stats Wizard?

NBA Stats Wizard är en Chrome-tillägg utvecklad av NBAStatsWizard, och dess huvudfunktion är "Optimize nba.com boxscore page for viewing".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner NBA Stats Wizard-förlängningens CRX-fil

Ladda ner NBA Stats Wizard-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

                        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                    

Grundläggande Information om Tillägg

Namn NBA Stats Wizard NBA Stats Wizard
ID plhekifidbecidebmmhjibhfkcbeimkn
Officiell webbadress https://chromewebstore.google.com/detail/nba-stats-wizard/plhekifidbecidebmmhjibhfkcbeimkn
Beskrivning Optimize nba.com boxscore page for viewing
Filstorlek 188 KB
Antal Installationer 83
Aktuell Version 1.3.87
Senast Uppdaterad 2023-11-12
Publiceringsdatum 2021-01-05
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare NBAStatsWizard
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}