Mobile 375 × 812

Desktop 1440 × 900

Score: 70 / 100
Based on 8 categories, 0 sections
Room to improve — your 4.2s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Solid infrastructure — fast server responses across the board.
Mostly compliant — a few items need attention.
Good content signals with minor gaps.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
Page weighs 60.4 MB (34.0 MB transferred)
Performance issues directly impact user engagement and conversion rates.
10 button(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/5c41003b-8948-4914-b3f0-fdbf9a82aed0)<a href="https://beavercheck.com/results/5c41003b-8948-4914-b3f0-fdbf9a82aed0"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fnbcsports.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fnbcsports.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Your LCP of 4.2s exceeds Google's 2.5s 'Good' threshold and the 1 performance issue below directly contributes to it. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
7 barrier(s) likely increasing bounce by ~28%.
Page takes 4.2s to load
+12% bounceUsers abandon at ~3s — you're 1.7s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 9.1s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
Viewport disables user zoom
+2% bounceVisitors with low vision can't read the page — and some jurisdictions treat this as a legal risk
Fix: Remove user-scalable=no; drop maximum-scale if it's below 2
No Open Graph tags
+2% bounceLinks shared on LinkedIn / Slack / Facebook show bare URLs — referral clicks drop
Fix: Add og:title, og:description, og:image, og:url to the page head
35 link(s) with generic text ("click here", "read more")
+1% bounceScreen-reader users navigating by link list see no context — and search engines can't infer relevance
Fix: Rewrite with descriptive phrases that identify the destination
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
$500 investment → $3,170/month returns + USD 157,500 risk avoided
$500
5h · 5 findings
$3,170 /mo
~$38,038 / year
USD 157,500
if kept compliant
$150 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
5.0 developer hours at $100/hr
Based on United States rates ($100/hr)
Start here for the best return on investment
$13,134 / month at risk
~$157,603 / year if left unfixed
$157,500
+5 more
$8.56 /mo
106977.3 MB/mo × 0.080 USD/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
3.51 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.20 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
9.06 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.083
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
18.25 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
61.66 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| cdn.cookielaw.org/consent/bc8ce68a-b6d0-4e2d-b6ba-5f0f1811d474/otSDKStub.js | 12.7 KiB | 768 ms |
| cdn.cookielaw.org/opt-out/otCCPAiab.js | 6.4 KiB | 152 ms |
| /resource/00000187-de45-d718-ada7-fe4596550000/styles/def... | 80.3 KiB | 1.4 s |
| /resource/00000187-de45-d718-ada7-fe4596550000/webcompone... | 1.5 KiB |
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/980b5625-e281-420... | 69.0 KiB | 68.2 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/27bef930-d603-4c8... | 62.3 KiB | 61.6 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/8a884e49-5518-42b... | 62.0 KiB | 61.4 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/08f722e6-d479-48c... | 61.9 KiB | 61.3 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/e47ed560-3e10-4ae... | 61.5 KiB | 60.9 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/73181621-6f78-4cc... | 60.6 KiB | 60.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/fee9366a-4efd-4d9... | 58.9 KiB | 58.3 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/1fae4011-c18a-420... | 58.4 KiB | 57.8 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/92b31f1a-076b-47c... | 56.2 KiB | 55.6 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/ddbdfe07-e0f4-4b0... | 53.6 KiB | 53.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/8b243304-d978-493... | 53.6 KiB | 53.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/d1156592-ba9a-450... | 51.5 KiB | 51.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/5b183712-a2cc-493... | 51.5 KiB | 51.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/8608f037-3c99-485... | 44.7 KiB | 44.2 KiB |
Image for Game 2: 76ers vs. Celtics div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/e2268cf/2147483647/strip/true/crop/1279x72... | 38.2 KiB | 32.8 KiB |
NCAA Football: Texas A&M at Notre Dame div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/b4494aa/2147483647/strip/true/crop/4777x26... | 34.1 KiB | 31.2 KiB |
MLB: Washington Nationals at Pittsburgh Pirates div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/0a4c181/2147483647/strip/true/crop/7677x43... | 33.7 KiB | 30.7 KiB |
151st Kentucky Derby div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/6b2c26f/2147483647/strip/true/crop/3241x18... | 32.7 KiB | 29.8 KiB |
Image for Chris Simms Unbuttoned: Draft Rankings div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/74719be/2147483647/strip/true/resize/500x2... | 31.5 KiB | 28.6 KiB |
Image for Numbers on the Board div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/676d187/2147483647/strip/true/crop/1920x10... | 23.4 KiB | 20.4 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69c55717c305b6bbc... | 28.4 KiB | 19.9 KiB |
Image for Performance View: PHI vs. BOS div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/bc7e712/2147483647/strip/true/crop/1280x71... | 22.8 KiB | 19.9 KiB |
nbc_pft_dexter_trade_260421.jpg a.VideoPlaylistItem > div.VideoPlaylistItem-media > picture > img.Image | /dims4/default/939dc38/2147483647/strip/true/crop/1920x10... | 21.9 KiB | 18.1 KiB |
Image for NBA on NBC Highlights Factory div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/07c1ef6/2147483647/strip/true/crop/1920x10... | 19.2 KiB | 16.7 KiB |
Image for NBA on NBC Highlights Factory div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/0a5f7e7/2147483647/strip/true/crop/1920x10... | 19.2 KiB | 16.7 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e7f0f8550625323... | 24.1 KiB | 15.9 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e70f25a00deacba... | 23.7 KiB | 15.6 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e7b16f3b0add7fc... | 23.6 KiB | 15.6 KiB |
Minnesota Timberwolves v Denver Nuggets - Game Two div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/4985763/2147483647/strip/true/crop/6681x37... | 16.6 KiB | 15.6 KiB |
Sony Open div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/64f5d82/2147483647/strip/true/crop/3587x20... | 16.0 KiB | 14.9 KiB |
Image for Game 2: 76ers vs. Celtics div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/fd25a27/2147483647/strip/true/crop/1280x71... | 16.1 KiB | 14.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e6d82e834b4f525... | 21.0 KiB | 13.8 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e70be3b76c47e63... | 20.7 KiB | 13.7 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e6ec20e52bda0b5... | 20.5 KiB | 13.6 KiB |
nbc_pft_nfldrafttrades_260421.jpg a.VideoPlaylistItem > div.VideoPlaylistItem-media > picture > img.Image | /dims4/default/bed60dd/2147483647/strip/true/crop/1920x10... | 16.2 KiB | 13.3 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e6eca0b33ad95f7... | 19.7 KiB | 13.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/b209ac57-8464-413... | 15.8 KiB | 10.5 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/878fbbf9-034f-452... | 14.5 KiB | 9.6 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3417.png | 8.1 KiB | 8.0 KiB |
FBL-ENG-PR-BRIGHTON-CHELSEA div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/90a89f7/2147483647/strip/true/crop/3828x21... | 13.9 KiB | 8.0 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3426.png | 7.9 KiB | 7.9 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3421.png | 7.7 KiB | 7.6 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3423.png | 6.7 KiB | 6.6 KiB |
NBA: Playoffs-Golden State Warriors at Phoenix Suns div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/82510c7/2147483647/strip/true/crop/2773x15... | 10.7 KiB | 4.9 KiB |
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| nbcsports.com/ | 835 ms |
| www.nbcsports.com/ | 0.0 ms |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /resource/00000187-de45-d718-ada7-fe4596550000/styles/def... | 79.9 KiB | 73.3 KiB |
| .jw-controls,.jw-controls-backdrop,.jw-flag-small-player ... | 36.3 KiB | 33.2 KiB |
| 22.3 KiB | 22.0 KiB | |
| .jw-reset{text-align:left;direction:ltr} … | 18.7 KiB | 18.1 KiB |
| :root { --cm-video-brand-primary: var(--yb-grape-jelly, #7e1fff); --cm-video-brand-secondary: v… | 16.0 KiB | 15.5 KiB |
| .trc_rbox_container { direction: ltr; text-align: left; } … | 18.3 KiB | 14.5 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 21.7 s |
| Other | 13.8 s |
| Style & Layout | 6.2 s |
| Script Parsing & Compilation | 2.3 s |
| Rendering | 2.1 s |
| Garbage Collection | 1.2 s |
| Parse HTML & CSS | 448 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| .jw-controls,.jw-controls-backdrop,.jw-flag-small-player ... | 36.3 KiB | 24.5 KiB |
| .jw-reset{text-align:left;direction:ltr} … | 18.7 KiB | 12.9 KiB |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| d1z2jf7jlzjs58.cloudfront.net/keys/nbcsports.com/p.js | 60.1 KiB | 27.5 KiB |
| mps.nbcuni.com/fetch/ext/load-nbcsports-v2-web.js?%20nowrite=2 | 54.8 KiB | 16.9 KiB |
| cdn.cookielaw.org/opt-out/otCCPAiab.js | 5.8 KiB | 2.6 KiB |
| /resource/00000187-de45-d718-ada7-fe4596550000/styles/def... | 4.9 KiB | 2.6 KiB |
| /ad/g/1?prof=169843%3Anbcu_web_jwp_cs_moat_https&nw=16984... | 18.9 KiB | 2.3 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
NBC_Sports_2023.svg div.Page-footer-content > div.Page-footer-logo > a > img.PageLogo-image | /7e/64/509b5f2e485994bb3a02473406cc/nbc-sports-2023.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
7:58
What Lawrence trade says about player empowerment div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
12:07
Dolphins must ‘restock the shelves’ in draft div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
7:21
Dissecting Jefferson’s comments on Murray div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
9:46
Williams, Johnson need ‘healthy amount of tension’ div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
7:20
Could a player ever pull out of the NFL draft? div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
7:05
Wilson, Boston become highest paid WNBA players div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
21:25
Liberty, Sky headline WNBA Free Agency winners div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
15:01
Did Lynx, Fire ‘lose’ Free Agency this season? div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
1:07
Kadioglu puts Brighton 1-0 ahead of Chelsea div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
Freddie Freeman
LAD
1st Baseman
#5
1hDodgers activated 1B Freddie Freeman from … ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Zack Wheeler
PHI
Starting Pitcher
#45
1hZack Wheeler (shoulder) will be activat… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Raisel Iglesias
ATL
Relief Pitcher
#26
1hRaisel Iglesias underwent an MRI that … ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Juan Soto
NYM
Right Fielder
#22
2hMets manager Carlos Mendoza confirmed Juan So… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Blake Snell
LAD
Starting Pitcher
#7
3hBlake Snell (shoulder) is scheduled to ma… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Ronald Acuña Jr.
ATL
Right Fielder
#13
4hRonald Acuña Jr. is hitting leadoff an… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Sonny Gray
BOS
Starting Pitcher
#54
4hRed Sox placed RHP Sonny Gray on the 15-d… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Juan Soto
NYM
Right Fielder
#22
5hJon Heyman of the New York Post reports that … ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Adley Rutschman
BAL
Catcher
#35
5hOrioles activated C Adley Rutschman off the 1… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Brionna Jones’ status for the start of the Dream’s season is uncertain followin… bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
02:21
Fam ‘can’t wait’ to begin WNBA career in Seattle bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
Caitlin Clark getting reacclimated to Fever digs as she returns to practice for… bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
Aliyah Boston gets extension with Fever under WNBA’s new provision for exceptio… bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
03:07
Miles is bringing joy into WNBA career with Lynx bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
Lynx re-sign 5-time All-Star forward Napheesa Collier
Associated Press bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
Aces re-sign four-time MVP A’ja Wilson to lock in their dynasty core
Associated… bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Payton Tolle
BOS
Starting Pitcher
#70
Personalize your Rotoworld feed by favori… form.PlayerNewsModule-form > div.PlayerNewsModule-ajax > bsp-list-carousel > ul.PlayerNewsModuleCarousel-slides |
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Payton Tolle
BOS
Starting Pitcher
#70
Personalize your Rotoworld feed by favori… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Submit Search div.SearchOverlay-search-overlay > form.SearchOverlay-search-form > label.SearchOverlay-search-label > button.SearchOverlay-search-submit |
Andy Edwards div.PagePromo-authors > ul.Page-authors-items > li.Page-authors-items-item > a.Mention |
Kurt Helin div.PagePromo-authors > ul.Page-authors-items > li.Page-authors-items-item > a.Mention |
Mike Florio div.PagePromo-authors > ul.Page-authors-items > li.Page-authors-items-item > a.Mention |
Kurt Helin div.PagePromo-authors > ul.Page-authors-items > li.Page-authors-items-item > a.Mention |
Kurt Helin div.PagePromo-authors > ul.Page-authors-items > li.Page-authors-items-item > a.Mention |
Associated Press div.PagePromo-authors > ul.Page-authors-items > li.Page-authors-items-item > a.Mention |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_mobile_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_mobile_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_mobile_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_mobile_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_mobile_disclosure_link |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
by Taboola div#trc_header_146434337 > div.trc_header_ext > div.logoDiv > a.trc_mobile_attribution_link |
Promoted Links div#trc_header_146434337 > div.trc_header_ext > div.logoDiv > a.trc_mobile_disclosure_link |
14:43 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
04:50 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
01:59 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
03:28 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
03:26 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
01:38 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
04:10 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
Sponsored Links by Taboola span.video-label-box > span.branding > div.logoDiv > a.trc_mobile_disclosure_link |
02:17 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:02 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:51 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:34 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
04:11 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
07:03 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
52 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
06:41 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
Shai Gilgeous-Alexander div.PagePromo-mentions > ul.PagePromo-mentions-items > li.PagePromo-mentions-items-item > a.Mention |
Kevin Durant div.PagePromo-mentions > ul.PagePromo-mentions-items > li.PagePromo-mentions-items-item > a.Mention |
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
| Insecure URL | Request Resolution |
|---|---|
| cdn.taboola.com/static/ba/bad47077-da12-4377-a372-6ab7acbcee90.svg | Automatically upgraded to HTTPS |
| cdn.taboola.com/libtrc/static/thumbnails/66db3c778cb87db4a8a03b9f8bb120db.jpg | Automatically upgraded to HTTPS |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | line 2, col 1792 |
| AttributionReporting | connect.facebook.net/en_US/fbevents.js line 279, col 769 |
| Topics | micro.rubiconproject.com/prebid/dynamic/24610.js line 24, col 84959 |
| SharedStorage | /pagead/managed/js/activeview/current/ufs_web_display.js line 252, col 234 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: net::ERR_NAME_NOT_RESOLVED | |
Failed to load resource: net::ERR_NAME_NOT_RESOLVED | |
TypeError: DIGIOH: Custom JS Apps #833 (Parent: AfterDocReady) -- t.mParticle.Identity.getCurrentUser is not a function
at https://www.lightboxcdn.com/vendor/ffc155a5-eba8-47bf-8e99-ed72cbcffdaf/custom.js?cb=4F47D7027256EE879C00BB97EDD63A5F:1:17734
at window.CJSAPPS_PARENT.<computed>.AfterDocReady (https://www.lightboxcdn.com/vendor/ffc155a5-eba8-47bf-8e99-ed72cbcffdaf/custom.js?cb=4F47D7027256EE879C00BB97EDD63A5F:1:17853)
at kt (https://www.lightboxcdn.com/vendor/ffc155a5-eba8-47bf-8e99-ed72cbcffdaf/main.js?cb=1320689CFFE19BFFE69C667D18168177:1:348680)
at gr (https://www.lightboxcdn.com/vendor/ffc155a5-eba8-47bf-8e99-ed72cbcffdaf/main.js?cb=1320689CFFE19BFFE69C667D18168177:1:424665)
at dr (https://www.lightboxcdn.com/vendor/ffc155a5-eba8-47bf-8e99-ed72cbcffdaf/main.js?cb=1320689CFFE19BFFE69C667D18168177:1:412477)
at https://www.lightboxcdn.com/vendor/ffc155a5-eba8-47bf-8e99-ed72cbcffdaf/main.js?cb=1320689CFFE19BFFE69C667D18168177:1:417496 |
Issues logged to the `Issues` panel in Chrome Devtools indicate unresolved problems. They can come from network request failures, insufficient security controls, and other browser concerns. Open up the Issues panel in Chrome DevTools for more details on each issue.
Performance issues directly impact user engagement and conversion rates.
| Issue type |
|---|
| Mixed content |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| www.nbcuniversalprivacy.com/privacy#accordionheader5 | here |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
Image for Taboola Advertising Unit div#rbox-h2v > div#internal_trc_1554159139 > div.videoCube > a.item-thumbnail-href |
Dexcom G7 15 Day is proven to lower A1C and increase time in range.³⁻⁷Dexcom G7… div#rbox-h2v > div#internal_trc_1554159139 > div.videoCube > a.item-label-href |
To appear in search results, crawlers need access to your app.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
937 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.14 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
983 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.022
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
4.66 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
14.43 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| /resource/00000187-de45-d718-ada7-fe4596550000/webcompone... | 1.5 KiB | |
| /resource/00000187-de45-d718-ada7-fe4596550000/styles/def... | 80.3 KiB | 350 ms |
| cdn.cookielaw.org/consent/bc8ce68a-b6d0-4e2d-b6ba-5f0f1811d474/otSDKStub.js | 12.8 KiB | 218 ms |
| cdn.cookielaw.org/opt-out/otCCPAiab.js | 6.4 KiB |
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/980b5625-e281-420... | 69.0 KiB | 66.9 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/27bef930-d603-4c8... | 62.3 KiB | 60.4 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/8a884e49-5518-42b... | 62.0 KiB | 60.2 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/08f722e6-d479-48c... | 61.9 KiB | 60.1 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/e47ed560-3e10-4ae... | 61.5 KiB | 59.7 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/73181621-6f78-4cc... | 60.6 KiB | 58.8 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/fee9366a-4efd-4d9... | 58.9 KiB | 57.1 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/1fae4011-c18a-420... | 58.4 KiB | 56.6 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/92b31f1a-076b-47c... | 56.2 KiB | 54.5 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/ddbdfe07-e0f4-4b0... | 53.6 KiB | 52.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/8b243304-d978-493... | 53.6 KiB | 52.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/d1156592-ba9a-450... | 51.5 KiB | 50.0 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/5b183712-a2cc-493... | 51.5 KiB | 49.9 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/8608f037-3c99-485... | 44.7 KiB | 43.4 KiB |
NBA: Los Angeles Lakers at Houston Rockets div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/648483b/2147483647/strip/true/crop/3810x21... | 68.8 KiB | 30.9 KiB |
Image for Chris Simms Unbuttoned: Draft Rankings div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/0fbe0ed/2147483647/strip/true/crop/1920x10... | 31.8 KiB | 28.2 KiB |
Image for Chris Simms Unbuttoned: Draft Rankings div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/977a95b/2147483647/strip/true/crop/1920x10... | 31.8 KiB | 28.2 KiB |
Image for Chris Simms Unbuttoned: Draft Rankings div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/74719be/2147483647/strip/true/resize/500x2... | 31.5 KiB | 27.9 KiB |
nbc_nba_atlnyk_260420.jpg div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/dcd41f1/2147483647/strip/true/crop/1920x10... | 29.9 KiB | 26.4 KiB |
Image for Game 2: 76ers vs. Celtics div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/e2268cf/2147483647/strip/true/crop/1279x72... | 38.2 KiB | 24.8 KiB |
nbc_nba_knickspreview_260420.jpg div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/3c6a092/2147483647/strip/true/crop/1920x10... | 26.3 KiB | 22.8 KiB |
nbc_nba_orlvdetpreview_260420.jpg div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/196d3b7/2147483647/strip/true/crop/1920x10... | 25.8 KiB | 22.2 KiB |
Image for Performance View: POR vs. SAS div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/4427cb3/2147483647/strip/true/crop/1280x71... | 25.5 KiB | 21.9 KiB |
NCAA Football: Texas A&M at Notre Dame div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/b4494aa/2147483647/strip/true/crop/4777x26... | 34.1 KiB | 21.6 KiB |
Image for Performance View: HOU vs. LAL div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/0247f94/2147483647/strip/true/crop/1280x71... | 25.2 KiB | 21.6 KiB |
MLB: Washington Nationals at Pittsburgh Pirates div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/0a4c181/2147483647/strip/true/crop/7677x43... | 33.7 KiB | 21.2 KiB |
151st Kentucky Derby div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/6b2c26f/2147483647/strip/true/crop/3241x18... | 32.7 KiB | 20.2 KiB |
NBA: Playoffs-Orlando Magic at Detroit Pistons div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/45651cd/2147483647/strip/true/crop/5591x31... | 23.4 KiB | 19.8 KiB |
Image for Numbers on the Board div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/676d187/2147483647/strip/true/crop/1920x10... | 23.4 KiB | 19.8 KiB |
Image for NFL Mock Draft Special div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/ec04cb2/2147483647/strip/true/crop/1920x10... | 23.2 KiB | 19.6 KiB |
nbc_nba_postgamereacs_260419.jpg div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/78b8365/2147483647/strip/true/crop/1920x10... | 23.1 KiB | 19.5 KiB |
nbc_pft_dexter_trade_260421.jpg a.VideoPlaylistItem > div.VideoPlaylistItem-media > picture > img.Image | /dims4/default/939dc38/2147483647/strip/true/crop/1920x10... | 21.9 KiB | 19.3 KiB |
Image for Performance View: PHI vs. BOS div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/bc7e712/2147483647/strip/true/crop/1280x71... | 22.8 KiB | 19.2 KiB |
Washington Commanders v New York Giants - NFL 2025 div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/0b2bf73/2147483647/strip/true/crop/4037x22... | 29.7 KiB | 17.2 KiB |
Image for Juego 2: Trail Blazers vs. Spurs (Español) div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/3c302b8/2147483647/strip/true/crop/1280x71... | 19.3 KiB | 16.3 KiB |
Image for Game 2: Trail Blazers vs. Spurs div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/a82de5d/2147483647/strip/true/crop/1280x71... | 19.3 KiB | 16.3 KiB |
Image for NBA on NBC Highlights Factory div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/07c1ef6/2147483647/strip/true/crop/1920x10... | 19.2 KiB | 16.2 KiB |
Image for NBA on NBC Highlights Factory div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/0a5f7e7/2147483647/strip/true/crop/1920x10... | 19.2 KiB | 16.2 KiB |
Image for Juego 2: Rockets vs. Lakers (Español) div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/882091a/2147483647/strip/true/crop/1280x71... | 19.1 KiB | 16.1 KiB |
AFC Divisional Playoffs: Houston Texans v New England Patriots div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/f5e7854/2147483647/strip/true/crop/8640x48... | 24.0 KiB | 15.4 KiB |
Minnesota Timberwolves v Denver Nuggets - Game Two div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/4985763/2147483647/strip/true/crop/6681x37... | 16.6 KiB | 15.4 KiB |
nbc_nba_denifeature_260419.jpg div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/a6750f3/2147483647/strip/true/crop/1920x10... | 17.9 KiB | 15.0 KiB |
Sony Open div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/64f5d82/2147483647/strip/true/crop/3587x20... | 16.0 KiB | 14.7 KiB |
nbc_pft_nfldrafttrades_260421.jpg a.VideoPlaylistItem > div.VideoPlaylistItem-media > picture > img.Image | /dims4/default/bed60dd/2147483647/strip/true/crop/1920x10... | 16.2 KiB | 14.2 KiB |
NFL: Philadelphia Eagles at Dallas Cowboys div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/9b2b360/2147483647/strip/true/crop/5385x30... | 22.0 KiB | 13.7 KiB |
Image for Game 2: 76ers vs. Celtics div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/fd25a27/2147483647/strip/true/crop/1280x71... | 16.1 KiB | 13.6 KiB |
NFL: Los Angeles Rams at Atlanta Falcons div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/015c0e0/2147483647/strip/true/crop/5710x32... | 21.7 KiB | 13.5 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69c55717c305b6bbc... | 28.4 KiB | 11.1 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3422.png | 8.2 KiB | 8.2 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3417.png | 8.1 KiB | 8.0 KiB |
FBL-ENG-PR-BRIGHTON-CHELSEA div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/90a89f7/2147483647/strip/true/crop/3828x21... | 13.9 KiB | 8.0 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3426.png | 7.9 KiB | 7.9 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3421.png | 7.7 KiB | 7.6 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e7f0f8550625323... | 24.1 KiB | 7.4 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e70f25a00deacba... | 23.7 KiB | 7.2 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e7b16f3b0add7fc... | 23.6 KiB | 7.2 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3420.png | 6.9 KiB | 6.8 KiB |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img | img.sportradar.com/ls/crest/medium/3423.png | 6.7 KiB | 6.6 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e6d82e834b4f525... | 21.0 KiB | 6.4 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e70be3b76c47e63... | 20.7 KiB | 6.3 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e6ec20e52bda0b5... | 20.5 KiB | 6.3 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/69e6eca0b33ad95f7... | 19.7 KiB | 6.0 KiB |
Image for Taboola Advertising Unit div.videoCube > a.item-thumbnail-href > div.thumbBlock_holder > span.thumbBlock | /taboola/image/fetch/f_jpg,q_auto,h_523,w_940,c_fill,g_fa... | 85.5 KiB | 5.6 KiB |
MLB CC Podcast Cover div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/f65304b/2147483647/strip/true/crop/3000x30... | 8.2 KiB | 5.0 KiB |
NBA: Playoffs-Golden State Warriors at Phoenix Suns div.PagePromo-media > a.Link > picture > img.Image | /dims4/default/82510c7/2147483647/strip/true/crop/2773x15... | 10.7 KiB | 4.9 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/b209ac57-8464-413... | 15.8 KiB | 4.8 KiB |
blaze-div > blaze-div > blaze-image > img blaze-div > blaze-div > blaze-image > img | /games/b88b01ce14eaf5a20165e2971a841b08/878fbbf9-034f-452... | 14.5 KiB | 4.4 KiB |
HTTP/2 and HTTP/3 offer many benefits over HTTP/1.1, such as multiplexing. Learn more about using modern HTTP.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| nbcsports.com/ | 221 ms |
| www.nbcsports.com/ | 0.0 ms |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /resource/00000187-de45-d718-ada7-fe4596550000/styles/def... | 79.9 KiB | 62.4 KiB |
| .jw-controls,.jw-controls-backdrop,.jw-flag-small-player ... | 36.3 KiB | 32.8 KiB |
| 22.3 KiB | 19.1 KiB | |
| .jw-reset{text-align:left;direction:ltr} … | 18.7 KiB | 18.1 KiB |
| :root { --cm-video-brand-primary: var(--yb-grape-jelly, #7e1fff); --cm-video-brand-secondary: v… | 16.0 KiB | 15.5 KiB |
| .trc_rbox_container { direction: ltr; text-align: left; } … | 18.3 KiB | 14.7 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 7.2 s |
| Other | 4.1 s |
| Style & Layout | 2.0 s |
| Script Parsing & Compilation | 582 ms |
| Rendering | 512 ms |
| Garbage Collection | 336 ms |
| Parse HTML & CSS | 115 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| .jw-controls,.jw-controls-backdrop,.jw-flag-small-player ... | 36.3 KiB | 24.5 KiB |
| .jw-reset{text-align:left;direction:ltr} … | 18.7 KiB | 12.9 KiB |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| d1z2jf7jlzjs58.cloudfront.net/keys/nbcsports.com/p.js | 60.1 KiB | 27.5 KiB |
| mps.nbcuni.com/fetch/ext/load-nbcsports-v2-web.js?%20nowrite=2 | 54.8 KiB | 16.9 KiB |
| cdn.cookielaw.org/opt-out/otCCPAiab.js | 5.8 KiB | 2.6 KiB |
| /resource/00000187-de45-d718-ada7-fe4596550000/styles/def... | 4.9 KiB | 2.6 KiB |
| /ad/g/1?prof=169843%3Anbcu_web_jwp_cs_moat_https&nw=16984... | 19.2 KiB | 2.4 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
NBC_Sports_2023.svg div.Page-footer-content > div.Page-footer-logo > a > img.PageLogo-image | /7e/64/509b5f2e485994bb3a02473406cc/nbc-sports-2023.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
7:58
What Lawrence trade says about player empowerment div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
12:07
Dolphins must ‘restock the shelves’ in draft div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
7:21
Dissecting Jefferson’s comments on Murray div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
9:46
Williams, Johnson need ‘healthy amount of tension’ div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
7:20
Could a player ever pull out of the NFL draft? div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
7:05
Wilson, Boston become highest paid WNBA players div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
21:25
Liberty, Sky headline WNBA Free Agency winners div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
15:01
Did Lynx, Fire ‘lose’ Free Agency this season? div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
1:07
Kadioglu puts Brighton 1-0 ahead of Chelsea div.VideoPlaylistModule-playlist-items > div.flickity-viewport > div.flickity-slider > div.VideoPlaylistModule-playlist-items-item |
8:00PM EDT WED, APR 22
Performance View: POR vs. SAS
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
8:00PM EDT WED, APR 22
Juego 2: Trail Blazers vs. Spurs (Español)
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
8:00PM EDT WED, APR 22
Trail Blazers vs. Spurs
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
8:00PM EDT WED, APR 22
Game 2: Trail Blazers vs. Spurs
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
9:00PM EDT WED, APR 22
Chris Simms Unbuttoned: Draft Rankings
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
9:30PM EDT WED, APR 22
Home Feed: LAD at SF
MLB bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
9:30PM EDT WED, APR 22
Away Feed: LAD at SF
MLB bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
10:00PM EDT WED, APR 22
Chris Simms Unbuttoned: Draft Rankings
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
10:30PM EDT WED, APR 22
Performance View: HOU vs. LAL
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
10:30PM EDT WED, APR 22
Game 2: Rockets vs. Lakers
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
10:30PM EDT WED, APR 22
Juego 2: Rockets vs. Lakers (Español)
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
10:30PM EDT WED, APR 22
Rockets vs. Lakers
NBA bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
11:00PM EDT WED, APR 22
NFL Mock Draft Special
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
12:00AM EDT WED, APR 22
2026 NFL Draft Rankings: Offense
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
1:00AM EDT WED, APR 22
NBA on NBC Highlights Factory
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
1:30AM EDT WED, APR 22
NBA on NBC Highlights Factory
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
2:00AM EDT WED, APR 22
NBA on NBC Highlights Factory
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
2:30AM EDT WED, APR 22
NBA on NBC Highlights Factory
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
3:00AM EDT WED, APR 22
Numbers on the Board
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
4:00AM EDT WED, APR 22
PFT Live
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
6:00AM EDT WED, APR 22
NFL Mock Draft Special
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
6:30AM EDT WED, APR 22
La Flèche Wallonne
Cycling bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
7:00AM EDT WED, APR 22
PFT Live
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
9:00AM EDT WED, APR 22
The Dan Patrick Show
NBC Sports NOW bsp-list-carousel.WatchScheduleCarousel-items > div.flickity-viewport > div.flickity-slider > div.WatchScheduleCarousel-items-item |
Juan Soto
NYM
Right Fielder
#22
2hMets manager Carlos Mendoza confirmed Juan So… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Blake Snell
LAD
Starting Pitcher
#7
3hBlake Snell (shoulder) is scheduled to ma… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Ronald Acuña Jr.
ATL
Right Fielder
#13
4hRonald Acuña Jr. is hitting leadoff an… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Sonny Gray
BOS
Starting Pitcher
#54
4hRed Sox placed RHP Sonny Gray on the 15-d… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Juan Soto
NYM
Right Fielder
#22
5hJon Heyman of the New York Post reports that … ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Adley Rutschman
BAL
Catcher
#35
5hOrioles activated C Adley Rutschman off the 1… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
MLB According to CC
Catch the latest episode of CC Sabathia’s new podcast here!… ul.PageListQuickLinksCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PageListQuickLinksCarousel-slide |
Title 24
Ricky Carmichael and Ryan Villopoto break down the latest SMX action.
… ul.PageListQuickLinksCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PageListQuickLinksCarousel-slide |
Aliyah Boston gets extension with Fever under WNBA’s new provision for exceptio… bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
03:07
Miles is bringing joy into WNBA career with Lynx bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
Lynx re-sign 5-time All-Star forward Napheesa Collier
Associated Press bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
Aces re-sign four-time MVP A’ja Wilson to lock in their dynasty core
Associated… bsp-list-carousel.PageList4UpCarousel-items > div.flickity-viewport > div.flickity-slider > div.PageList4UpCarousel-items-item |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
body.Page-body > iframe#fw-71e2218-tag body.Page-body > iframe#fw-71e2218-tag |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
NFL
NBA
MLB
WNBA
More
Watch
ProFootballTalk
Rotoworld
Favorites
Profile div.Page-header-bar-end > div.Page-header-navigation > nav.Navigation > ul.Navigation-items |
Payton Tolle
BOS
Starting Pitcher
#70
Personalize your Rotoworld feed by favori… form.PlayerNewsModule-form > div.PlayerNewsModule-ajax > bsp-list-carousel > ul.PlayerNewsModuleCarousel-slides |
PFT Live
Mike Florio, Chris Simms and a cast of co-hosts tackle the biggest NFL… main.Page-main > div.PageListQuickLinksCarousel > bsp-quick-links-carousel > ul.PageListQuickLinksCarousel-slides |
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Payton Tolle
BOS
Starting Pitcher
#70
Personalize your Rotoworld feed by favori… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Freddie Freeman
LAD
1st Baseman
#5
1hDodgers activated 1B Freddie Freeman from … ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Zack Wheeler
PHI
Starting Pitcher
#45
1hZack Wheeler (shoulder) will be activat… ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
Raisel Iglesias
ATL
Relief Pitcher
#26
1hRaisel Iglesias underwent an MRI that … ul.PlayerNewsModuleCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PlayerNewsModuleCarousel-slide |
PFT Live
Mike Florio, Chris Simms and a cast of co-hosts tackle the biggest NFL… ul.PageListQuickLinksCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PageListQuickLinksCarousel-slide |
Chris Simms Unbuttoned
The former QB gives his unfiltered NFL analysis. Clap it… ul.PageListQuickLinksCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PageListQuickLinksCarousel-slide |
The 2 Robbies
Robbie Mustoe and Earle dissect top Premier League storylines.
Li… ul.PageListQuickLinksCarousel-slides > div.flickity-viewport > div.flickity-slider > li.PageListQuickLinksCarousel-slide |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Submit Search div.SearchOverlay-search-overlay > form.SearchOverlay-search-form > label.SearchOverlay-search-label > button.SearchOverlay-search-submit |
Boston Red Sox Primary Logo div.PlayerNewsCard-player-info > div.PlayerNewsCard-team > div.PlayerNewsCard-team-logo > a |
Los Angeles Dodgers Primary Logo div.PlayerNewsCard-player-info > div.PlayerNewsCard-team > div.PlayerNewsCard-team-logo > a |
Philadelphia Phillies Primary div.PlayerNewsCard-player-info > div.PlayerNewsCard-team > div.PlayerNewsCard-team-logo > a |
Atlanta Braves Secondary Logo div.PlayerNewsCard-player-info > div.PlayerNewsCard-team > div.PlayerNewsCard-team-logo > a |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
Sponsored span.video-label-box > span.branding > div.logoDiv > a.trc_desktop_disclosure_link |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
by Taboola div#trc_header_3729436590 > div.trc_header_ext > div.logoDiv > a.trc_desktop_attribution_link |
Promoted Links div#trc_header_3729436590 > div.trc_header_ext > div.logoDiv > a.trc_desktop_disclosure_link |
14:43 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
04:50 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
01:59 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
03:28 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
03:26 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
01:38 div.PageList7Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
04:10 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:17 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:02 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:51 div.PageList4Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:21 div.PageList4UpCarousel-items-item > div.PagePromo > div.PagePromo-media > a.Link |
02:34 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
04:11 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
07:03 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
52 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
06:41 div.PageList6Up-items-item > div.PagePromo > div.PagePromo-media > a.Link |
Shai Gilgeous-Alexander div.PagePromo-mentions > ul.PagePromo-mentions-items > li.PagePromo-mentions-items-item > a.Mention |
Jamal Murray div.PagePromo-mentions > ul.PagePromo-mentions-items > li.PagePromo-mentions-items-item > a.Mention |
Kevin Durant div.PagePromo-mentions > ul.PagePromo-mentions-items > li.PagePromo-mentions-items-item > a.Mention |
LeBron James div.PagePromo-mentions > ul.PagePromo-mentions-items > li.PagePromo-mentions-items-item > a.Mention |
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
| Insecure URL | Request Resolution |
|---|---|
| cdn.taboola.com/static/ba/bad47077-da12-4377-a372-6ab7acbcee90.svg | Automatically upgraded to HTTPS |
| cdn.taboola.com/libtrc/static/thumbnails/66db3c778cb87db4a8a03b9f8bb120db.jpg | Automatically upgraded to HTTPS |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | line 2, col 1792 |
| AttributionReporting | connect.facebook.net/en_US/fbevents.js line 279, col 769 |
| Topics | micro.rubiconproject.com/prebid/dynamic/24610.js line 24, col 84959 |
| SharedStorage | /pagead/managed/js/activeview/current/ufs_web_display.js line 252, col 234 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: net::ERR_NAME_NOT_RESOLVED | |
Failed to load resource: net::ERR_NAME_NOT_RESOLVED |
Issues logged to the `Issues` panel in Chrome Devtools indicate unresolved problems. They can come from network request failures, insufficient security controls, and other browser concerns. Open up the Issues panel in Chrome DevTools for more details on each issue.
Performance issues directly impact user engagement and conversion rates.
| Issue type |
|---|
| Mixed content |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| www.nbcuniversalprivacy.com/privacy#accordionheader5 | here |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img div.sr-us-score-nano__match > div.sr-us-score-nano__team > div.sr-us-score-nano__team-crest > img.sr-crest-img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink div.PlayerNewsCard > div.PlayerNewsCard-player > bsp-favoritelink-modal.FavoriteLink-wrapper > a.FavoriteLink |
To appear in search results, crawlers need access to your app.
Send Feedback