Run 1 summary

https://matchbest.ai

Tested 2026-08-06 14:38:09 using Chrome 150.0.7871.186 (runtime settings)

SummaryWaterfallMetricsRenderingCoachPageXrayThird party

Summary

Google Web Vitals

1.980 sTTFB
3.268 sLargest Contentful Paint
0.000Cumulative Layout Shift
31 msTotal Blocking Time

Loading

3.268 sFirst Paint
3.616 sFully Loaded
81 msMax Potential FID

Page weight & requests

392.8 KBTotal transfer size
926.8 KBTotal content size
21Requests

CPU

2Long tasks
3.275 sLast long task at

Visual progress

3.070 sFirst Visual Change
3.203 sSpeed Index
3.204 sVisual Complete 85%
3.204 sVisual Complete 99%
3.304 sLast Visual Change
Screenshot
Run 1 · after page complete

Waterfall

First paintFCPLCPDOMContentLoadedDOM interactiveLoadRender-blockingRedirectError

Rendering

Run 1
0.000 s
0s1s2s3s

The red band on the timeline marks when the main thread was busy with long tasks: moments when the page could not paint or respond, however the video looks.

Download video

Filmstrip

6 frames

Use --filmstrip.showAll to show all filmstrips.

Frame at 0 ms
0 ms
0 %
Frame at 3.000 s
3.000 s
0 %
Frame at 3.100 s
3.100 s
1 %
Frame at 3.200 s
3.200 s
1 %
Frame at 3.300 s
3.300 s
99 %
Frame at 3.400 s
3.400 s
100 %

Click a frame to seek the video to that moment. The dot marks frames where the page changed visually.

Why was rendering delayed?

The server dominated the wait. The first byte took 1.980 s (61 % of the time to First Contentful Paint). Nothing can render before it arrives, and Google Web Vitals considers a TTFB over 800 ms in need of improvement. See the request timing on the Waterfall tab. First paint landed at 3.268 s; the 1 render-blocking request was done by 2.936 s and the remaining ~332 ms is style, layout and web-font loading.

Want to see how much CSS style-recalculation work delayed FCP and LCP, plus CPU long tasks? Run with --cpu.

Render blocking requests

9 requests · 179.9 KB

Blocking requests delay both paints: the browser renders nothing until they arrive, so they push First Contentful Paint and everything after it, including the largest paint (LCP). Requests that block the parser inside the body stall everything after them in the document. Load JavaScript with defer or async, and keep non-critical CSS off the critical path with media attributes. Bars show when each request loaded on a clock that runs to the last paint; the gap after the bars is style and layout work. Web fonts are context, not blockers: text renders invisible or in a fallback face while they load, so a font finishing after a paint is the classic reason text changed late.

RequestWhen it loadedTransferDownload
document
matchbest.ai · TTFB 1.980 s
830 ms
232 B825 ms
css · www.matchbest.ai
948 ms
15.8 KB948 ms
02i7dfk78~t~2.jspotentially blocking
javascript · www.matchbest.ai
723 ms
11.2 KB723 ms
0n1bpogj.il~n.jspotentially blocking
javascript · www.matchbest.ai
503 ms
36.9 KB503 ms
10u3y4bw1ayzs.jspotentially blocking
javascript · www.matchbest.ai
494 ms
69.8 KB494 ms
0d3shmwh5_nmn.jspotentially blocking
javascript · www.matchbest.ai
259 ms
13.0 KB259 ms
0imilyto_0e6w.jspotentially blocking
javascript · www.matchbest.ai
256 ms
2.6 KB256 ms
turbopack-0557nzrpsl2y7.jspotentially blocking
javascript · www.matchbest.ai
255 ms
4.4 KB255 ms
11wy7u~uyuxbu.jspotentially blocking
javascript · www.matchbest.ai
249 ms
23.1 KB249 ms
1 more request
all done by 3.178 s
3.1 KB
web font · www.matchbest.ai
490 ms
22.9 KB490 ms
web font · www.matchbest.ai
974 ms
28.9 KB974 ms
0817 ms1.634 sFCP · LCP 3.268 s

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 9.2.1.

Performance advice

81
4 errors7 warnings4 info
infoAdd decoding="async" to non-critical imagesdecodingAsync

The page has 1 image (out of 1) without a decoding hint. Add decoding="async" to non-critical images so the browser can decode them off the main thread.

Setting decoding="async" on an <img> tells the browser it can decode the image off the main thread, which keeps the page responsive to user interactions while images are being processed. The default ("auto") leaves the choice to the browser. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#decoding

Offenders
error(0)Have a fast first contentful paintfirstContentfulPaint

First contentful paint is poor (3.268 s). It is in the Google Web Vitals poor range, slower than 3 seconds.The page has a high time to first byte (TTFB) 1.980 s that you should look into to improve first contentful paint.

The First Contentful Paint (FCP) metric measures the time from when the page starts loading to when any part of the page content is rendered on the screen. For this metric, "content" refers to text, images (including background images), <svg> elements, or non-white <canvas> elements.

warn(0)Avoid redirecting the main documentdocumentRedirect

The main document gets redirected 2 time(s). Remove those redirect and make the page faster!

You should never ever redirect the main document, because it will make the page load slower for the user. Well, you should redirect the user if the user tries to use HTTP and there's an HTTPS version of the page. The coach checks for that. :)

Offenders
infoThe favicon should be small and cacheablefavicon

The favicon size is 25.9 kB bytes. That's quite big, can you make it smaller? The favicon has no cache time.

It is easy to make the favicon big but please avoid doing that, because every browser will then perform an unnecessarily large download. And make sure the cache headers are set for a long time for the favicon. It is easy to miss since it's another content type.

Offenders
warn(50)Avoid extra requests by setting cache headerscacheHeaders

The page has 5 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 125.6 kB the next access.

The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.

Offenders
warn(60)Avoid CPU Long TaskslongTasks

The page has 2 CPU long tasks with the total of 141 ms. The total blocking time is 31 ms and 1 long task before first contentful paint with total time of 60 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks.

Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler.

Offenders
  • self
  • self
warn(70)Inline CSS for faster first renderinlineCss

The page loads 3 CSS requests inside of head, try to inline the CSS for the first render and lazy load the rest.

In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.

Offenders
infoAvoid too many fontsfewFonts

The page has 3 font requests. Do you really need them? What value does the fonts give the user?

How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.

Offenders
warn(70)Don't use private headers on static contentprivateAssets

The page has 3 requests with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.

If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.

Offenders
error(80)Have a fast largest contentful paintlargestContentfulPaint

Largest contentful paint can be improved 3.268 s. It is in the Google Web Vitals needs improvement range, slower than 2.5 seconds.

Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance.

Offenders
  • <h1 class="text-5xl font-black text-white mb-6 leading-none tracking-tighter"></h1>
warn(90)Don't scale images in the browseravoidScalingImages

The page has 1 image that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.

It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.

Offenders
error(90)Avoid Frontend single point of failuresspof

The page has 2 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head.

A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag.

Offenders
warn(90)Avoid doing redirectsassetsRedirects

The page has 1 redirect. 1 of the redirects are from the base domain, please fix them!

A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile.

Offenders
error(90)Avoid missing and error requestsresponseOk

The page has 1 error response. The page has 1 response with code 404.

Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it.

Offenders
infoLong cache headers is goodcacheHeadersLong

The page has 2 requests that have a shorter cache time than one year (but still a cache time).

Setting a cache header is good. Setting a long cache header (a year) is even better because the asset will stay in the browser cache across visits. For content-hashed URLs (e.g. app.4af2.css) you can safely use Cache-Control: max-age=31536000, immutable. For unversioned URLs that may change, use a revalidating strategy instead.

Offenders

Best practice advice

92
1 warning1 info
warn(50)Avoid too many third party requeststhirdParty

The page do 14% requests to third party domains (3 requests and 31.2 kB). First party is 18 requests and 371.1 kB. The regex .*matchbest.* was used to calculate first/third party requests.

Do not load most of your content from third party URLs.

infoAvoid unnecessary headersunnecessaryHeaders

There are 3 responses that sets both a max-age and expires header. There are 21 responses that sets a server header.

Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.

Offenders

Privacy advice

65
1 error7 warnings4 info
warn(0)Declare a referrer policy on the documentreferrerPolicy

No <meta name="referrer"> tag was found on the page. Set a Referrer-Policy response header (preferred) or add a meta tag, for example <meta name="referrer" content="strict-origin-when-cross-origin">.

Without an explicit referrer policy the browser falls back to the user-agent default and may leak the full URL of the previous page (including query strings) to every cross-origin request. Set a Referrer-Policy response header (preferred) or a <meta name="referrer"> tag in the document. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy

warn(0)Use a strict Content-Security-Policy header to mitigate cross-site scripting (XSS) attacks.contentSecurityPolicyHeader

Set a Content-Security-Policy header to mitigate cross-site scripting attacks. You can start with a Content-Security-Policy-Report-Only header, which only reports violations rather than blocking them.

A Content-Security-Policy response header tells the browser which sources of script, style, and other content are allowed. The most effective form is a strict CSP using nonces or hashes together with strict-dynamic; the worst is a missing header, with unsafe-inline and unsafe-eval close behind. https://web.dev/articles/strict-csp

Offenders
infoSet a Cross-Origin-Embedder-Policy header so cross-origin subresources opt in to being embedded.crossOriginEmbedderPolicyHeader

Set a Cross-Origin-Embedder-Policy header (typically require-corp or credentialless) on the document response to control cross-origin embedding.

Cross-Origin-Embedder-Policy (COEP) makes the page refuse to load cross-origin subresources unless they explicitly opt in via CORP or CORS. Together with Cross-Origin-Opener-Policy it puts the page in a cross-origin isolated context, which mitigates cross-window side-channel attacks (Spectre) and unlocks high-resolution timers and SharedArrayBuffer. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Embedder-Policy

Offenders
warn(0)Set a Cross-Origin-Opener-Policy header to isolate the page from cross-origin windows.crossOriginOpenerPolicyHeader

Set a Cross-Origin-Opener-Policy header (typically same-origin) on the document response to isolate the page from cross-origin windows.

Cross-Origin-Opener-Policy (COOP) lets a page sever its window-group ties to cross-origin documents that opened it or that it opens. Together with Cross-Origin-Embedder-Policy it puts the page in a cross-origin isolated context, which mitigates cross-window side-channel attacks (Spectre) and unlocks high-resolution timers and SharedArrayBuffer. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Opener-Policy

Offenders
infoSet a Cross-Origin-Resource-Policy header to limit who may embed the page.crossOriginResourcePolicyHeader

Set a Cross-Origin-Resource-Policy header (same-origin, same-site or cross-origin) on the document response to limit who may embed it.

Cross-Origin-Resource-Policy (CORP) is a per-response opt-in that tells the browser which origins are allowed to embed the resource. It blocks cross-origin or cross-site no-cors embedding (img, script, iframe, etc.) and is one of the building blocks of cross-origin isolation. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Resource-Policy

Offenders
infoSet a NEL header so the browser reports network errors back to you.nelHeader

Set a NEL header (paired with Reporting-Endpoints) to collect connection-level error reports from the field.

The NEL (Network Error Logging) response header tells the browser to record connection-level failures (DNS, TLS, HTTP errors) and ship them to a reporting endpoint. NEL pairs with the Reporting-Endpoints / Report-To header — the page declares the endpoint group and NEL points at it. Together they give you visibility into errors that never reach your origin server. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/NEL

Offenders
warn(0)Set a Permissions-Policy header to control which browser features the page can use.permissionsPolicyHeader

Set a Permissions-Policy header to control which browser features the page can use.

The Permissions-Policy response header (the successor to Feature-Policy) lets a site explicitly opt in or out of powerful browser features such as camera, microphone, geolocation, payment and clipboard. Setting a strict policy reduces the attack surface and limits what embedded third parties can do. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy

Offenders
warn(0)Set a referrer-policy header to make sure you do not leak user information.referrerPolicyHeader

Set a referrer-policy header to make sure you do not leak user information.

Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.

Offenders
infoDeclare reporting endpoints so the browser can deliver Reporting-API events.reportingEndpointsHeader

Set a Reporting-Endpoints header (or the legacy Report-To header) so CSP reports, NEL data and other Reporting-API events have an endpoint to land at.

The Reporting-Endpoints response header (the successor to Report-To) names the URLs that browsers should POST reports to. Without it, CSP report-to directives, Cross-Origin-Opener-Policy reports, NEL data and other Reporting-API events have nowhere to go. The legacy Report-To header is still accepted for older Chromium versions. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Reporting-Endpoints

Offenders
error(0)Set a strict transport header to make sure the user always use HTTPS.strictTransportSecurityHeader

Set a strict transport header to make sure the user always use HTTPS.

The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS, instead of using HTTP. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security.

Offenders
warn(0)Do not share user data with third parties.thirdPartyPrivacy

The page has 14% requests that are 3rd party (3 requests with a size of 31.2 kB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 3 survelliance requests and uses 1 survelliance tool. The page do 3 surveillance requests and uses 1 surveillance tool.

Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests.

Offenders
warn(0)Set X-Content-Type-Options: nosniff to stop the browser from MIME-sniffing the response.xContentTypeOptionsHeader

Set X-Content-Type-Options: nosniff on the document response to prevent MIME-sniffing.

X-Content-Type-Options: nosniff prevents browsers from interpreting files as a different MIME type than what is declared in the Content-Type header. This blocks a class of cross-site scripting and content-type confusion attacks and should be set on every response. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options

Offenders

Page info

A snapshot of what the browser actually built for this page: the document, how big and deep the DOM tree is and what it kept in storage. Big, deep trees are slower to style and lay out, so the counts Chrome warns about carry a flag.

Page info

Document

What the page says it is and how large it rendered.

TitleCreate Next AppThe document title, shown in the browser tab and used by search results.
Layout viewport1365 × 620 pxThe width the page laid out at, and the full height of the rendered document.

DOM structure

How much markup the browser has to build, style and lay out.

DOM elements73Total HTML elements. Fewer means less for the browser to style, lay out and paint.
Avg DOM depth5How deeply elements are nested on average.
Max DOM depth11The deepest nesting on the page. Deep branches cost more style recalculation.
Iframes0No embedded documents on this page.
Script tags16Number of script elements. More scripts usually means more main-thread work.

Storage and connection

What the page stored on the client, and the network it was tested on.

Local storage0 bData the page saved in localStorage, kept across visits.
Session storage0 bData kept in sessionStorage for this tab session only.
Connection type4GWhat the Network Information API reported for the test connection.

Technologies used to build the page

Data collected using Coach-core version 9.2.1. With updated code from Webappanalyzer 2026-05-04. Use --browsertime.firefox.includeResponseBodies html or --browsertime.chrome.includeResponseBodies html to help Wappalyzer find more information about technologies used.

Detected technologies

4 technologies
  • UbuntuConfidence100
    Operating systems
  • Nginx1.28.3Confidence100
    Web serversReverse proxies
  • HSTSConfidence100
    Security
  • HTTP/3Confidence100
    Miscellaneous

Third-party tools

3 tools

Data collected using Third Party Web version 0.29.2.

Cdn
  • Google Fonts
Survelliance
  • Google Fonts
Surveillance
  • Google Fonts

Visual Metrics

Visual milestones

all times from navigation start
Speed Index3.20 show quickly the page looked done
First Visual Change3.07 sfirst paint reaches the screen
Last Visual Change3.30 sscreen stops changing · 0.23 s after first
nothing painted yet
First Visual Change3.07 s
Visual Complete 85% · Visual Complete 95% · Visual Complete 99%3.20 s
Last Visual Change3.30 s
01.0 s2.0 s3.0 s
Content milestones
Perception index
Visual progress
Visual progress at 0 s0.0s
Visual progress at 3 s3.0s
Visual progress at 3.1 s3.1s
Visual progress at 3.2 s3.2s
Visual progress at 3.3 s3.3s
Visual progress at 3.4 s3.4s
FCP3.27s
LCP3.27s
VC853.20s
Long tasks
0.0s0.7s1.4s2.0s2.7s3.4s

Google Web Vitals

1.980 sTTFB
Poor
3.268 sLCP
Needs improvement

Largest Contentful Paint

When the page main content is rendered, collected via the Largest Contentful Paint API. Read more about Largest Contentful Paint.

3.268 sLCP render time

Phase breakdown

  • TTFB1.980 s
  • Resource load delay0 ms
  • Resource load duration0 ms
  • Element render delay1.288 s

Element

Element type
<h1>
Size (w × h)
21008
Load time
0 ms

DOM path

body > div:eq(1) > div:eq(0) > div:eq(2) > h1
LCP

The LCP element is highlighted in the screenshot. If nothing is highlighted the element was removed before the screenshot or the LCP API couldn't find it.

Cumulative Layout Shift

How much the page's content shifts as it loads, collected via the Cumulative Layout Shift API.

0.000cumulative layout shift score

One shift is 100% of your 0.000 CLS. #text:eq(0) moved at 3.114 s. Reserve space for whatever renders into that spot, a fixed height or an aspect-ratio box, so later content stops pushing the page around.

Elements that shifted

Worst first, showing shifts of 0.01 and up. Each percentage is that shift's exact share of the score.

The shift is spread across many movements below 0.01, none large enough to single out. Check the video or filmstrip to see what moved.

Layout shift

Elements that shifted by more than 0.01 are highlighted in the screenshot. If an element shifted outside the viewport, it won't appear here. Check the video or filmstrip to see the shift.

Browser Metrics

Navigation Timing
Extra timings
TTFB1.980 s

Custom metrics collected through JavaScript

There are no custom configured scripts.

Extra metrics collected using scripting

There are no custom extra metrics from scripting.

Chrome internal metrics (CDP)33
Audio handlers0
Audio worklet processors0
Documents8
Frames8
JS event listeners307
Layout objects118
Media key sessions0
Media keys0
Nodes200
Resources37
Context lifecycle state observers24
V8 per context datas4
Worker global scopes0
Uacss resources0
Rtc peer connections0
Resource fetchers8
Ad subframes0
Detached script states2
Array buffer contents5
Layout count4
Recalc style count5
Layout duration58
Recalc style duration8
Dev tools command duration9
Script duration51
V8 compile duration1
Task duration314
Task other duration187
Thread time0
Process time1
JS heap used size3666516
JS heap total size6291456
First meaningful paint3266

PageXray

How the page is built.

HTTP versionHTTP/1.1
Total requests21
Total domains4
Transfer size392.8 KB
Content size926.8 KB
Missing compression0

Main document

status 200 · 2 redirects

https://www.matchbest.ai/login

HeaderValue
cache-controls-maxage=31536000
connectionkeep-alive
content-encodinggzip
content-typetext/html; charset=utf-8
dateThu, 06 Aug 2026 14:38:12 GMT
etag"15bdwbuwd9ua8d"
servernginx/1.28.3 (Ubuntu)
transfer-encodingchunked
varyrsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch, Accept-Encoding
x-nextjs-cacheHIT
x-nextjs-prerender1 1
x-nextjs-stale-time300

Response codes

200
1885.7%
307
14.8%
308
14.8%
404
14.8%

Requests and sizes per content type

6 types

Transfer size383.1 KB

  • javascript44.3%
  • svg22.9%
  • font20.9%
  • favicon6.6%
  • css4.5%
  • html0.95%

Content size916.6 KB

  • javascript62.7%
  • svg13.4%
  • css11.0%
  • font8.7%
  • favicon2.8%
  • html1.4%

Requests18

  • javascript50.0%
  • css16.7%
  • font16.7%
  • html5.6%
  • favicon5.6%
  • svg5.6%
ContentHeader SizeTransfer SizeContent SizeRequests
html437 B3.6 KB13.0 KB1
css374 B17.1 KB100.9 KB3
javascript3.4 KB169.5 KB574.8 KB9
font616 B79.9 KB79.9 KB3
favicon326 B25.3 KB25.3 KB1
svg346 B87.6 KB122.7 KB1
Total5.5 KB383.1 KB916.6 KB18

Data per domain

4 domains
DomainTotal download timeTransfer SizeContent SizeRequests
matchbest.ai1.070 s0 b0 b1
www.matchbest.ai9.940 s362.4 KB887.1 KB17
fonts.googleapis.com239 ms1.7 KB11.0 KB2
fonts.gstatic.com7 ms28.7 KB28.7 KB1

Expires & last-modified statistics

typeminmedianmax
Expires0 seconds1 year1 year
Last modified0 seconds4 weeks12 weeks

Requests loaded after onLoad event

1 request

Includes requests done after load event end.

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript0 b0
image0 b0
font0 b0
favicon25.3 KB1
Total25.3 KB1

Requests loaded after onContentLoad

6 requests

Includes requests done after DOM content loaded.

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript37.5 KB3
image0 b0
font28.7 KB1
favicon25.3 KB1
Total101.3 KB6

Third party

Third party requests categorised by Third party web version 0.29.2.

Third-party requests6
Tools1
Categories2

Categories

2 categories

Requests by category6

  • cdn3 req · 1 tool50.0%
  • survelliance3 req · 1 tool50.0%

First party vs third party

18 first · 3 third party

Transfer size392.8 KB

  • First party362.4 KB92.3%
  • Third party30.4 KB7.7%

Content size926.8 KB

  • First party887.1 KB95.7%
  • Third party39.7 KB4.3%

Requests21

  • First party1885.7%
  • Third party314.3%

First party requests and sizes per content type

18 requests

Calculated using .*matchbest.* (use --firstParty to configure).

ContentHeader SizeTransfer SizeContent SizeRequests
html437 B3.6 KB13.0 KB1
css374 B15.4 KB90.0 KB1
javascript3.4 KB169.5 KB574.8 KB9
image0 b0 b0 b0
font616 B51.2 KB51.2 KB2
favicon326 B25.3 KB25.3 KB1
svg346 B87.6 KB122.7 KB1
Total6.6 KB362.4 KB887.1 KB18

Third party requests and sizes per content type

3 requests
ContentHeader SizeTransfer SizeContent SizeRequests
html0 b0 b0 b0
css0 b1.7 KB11.0 KB2
javascript0 b0 b0 b0
image0 b0 b0 b0
font0 b28.7 KB28.7 KB1
favicon0 b0 b0 b0
TotalN/A30.4 KB39.7 KB3