chrome-devtools-frontend 1.0.1515988 → 1.0.1518653
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/checklist/README.md +2 -2
- package/docs/checklist/javascript.md +1 -1
- package/docs/contributing/README.md +1 -1
- package/docs/contributing/settings-experiments-features.md +9 -8
- package/docs/cookbook/devtools_on_devtools.md +2 -2
- package/docs/cookbook/localization.md +10 -10
- package/docs/devtools-protocol.md +9 -8
- package/docs/ecosystem/automatic_workspace_folders.md +3 -3
- package/docs/get_the_code.md +0 -2
- package/docs/styleguide/ux/components.md +166 -85
- package/docs/styleguide/ux/numbers.md +3 -4
- package/front_end/core/common/README.md +13 -12
- package/front_end/core/host/GdpClient.ts +16 -1
- package/front_end/core/host/UserMetrics.ts +8 -2
- package/front_end/core/root/Runtime.ts +13 -0
- package/front_end/core/sdk/CSSMatchedStyles.ts +5 -1
- package/front_end/entrypoints/main/MainImpl.ts +6 -3
- package/front_end/generated/InspectorBackendCommands.js +10 -7
- package/front_end/generated/SupportedCSSProperties.js +21 -7
- package/front_end/generated/protocol-mapping.d.ts +16 -1
- package/front_end/generated/protocol-proxy-api.d.ts +13 -1
- package/front_end/generated/protocol.ts +95 -0
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +170 -54
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +14 -181
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +13 -315
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +224 -50
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +310 -11
- package/front_end/models/ai_assistance/performance/AIContext.ts +15 -2
- package/front_end/models/ai_code_completion/AiCodeCompletion.ts +41 -19
- package/front_end/models/badges/Badge.ts +8 -3
- package/front_end/models/badges/CodeWhispererBadge.ts +2 -4
- package/front_end/models/badges/StarterBadge.ts +2 -2
- package/front_end/models/badges/UserBadges.ts +59 -6
- package/front_end/models/formatter/FormatterWorkerPool.ts +3 -3
- package/front_end/models/javascript_metadata/NativeFunctions.js +1 -1
- package/front_end/models/trace/README.md +28 -1
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +1 -1
- package/front_end/models/trace/helpers/Trace.ts +99 -43
- package/front_end/models/trace/types/TraceEvents.ts +9 -0
- package/front_end/panels/accessibility/ARIAAttributesView.ts +113 -191
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +9 -9
- package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -4
- package/front_end/panels/accessibility/accessibilityProperties.css +2 -0
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +16 -2
- package/front_end/panels/ai_assistance/components/ChatView.ts +9 -10
- package/front_end/panels/ai_assistance/components/PerformanceAgentMarkdownRenderer.ts +42 -0
- package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +32 -9
- package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +7 -1
- package/front_end/panels/common/BadgeNotification.ts +67 -15
- package/front_end/panels/common/GdpSignUpDialog.ts +18 -9
- package/front_end/panels/console/ConsolePrompt.ts +1 -1
- package/front_end/panels/console/ConsoleView.ts +6 -2
- package/front_end/panels/elements/ComputedStyleWidget.ts +1 -2
- package/front_end/panels/elements/ElementsPanel.ts +4 -0
- package/front_end/panels/elements/ElementsTreeElement.ts +18 -0
- package/front_end/panels/elements/ElementsTreeOutline.ts +13 -0
- package/front_end/panels/elements/LayoutPane.ts +1 -1
- package/front_end/panels/elements/StylePropertyTreeElement.ts +21 -6
- package/front_end/panels/media/TickingFlameChart.ts +1 -1
- package/front_end/panels/network/NetworkLogView.ts +5 -1
- package/front_end/panels/profiler/HeapSnapshotView.ts +34 -19
- package/front_end/panels/search/SearchResultsPane.ts +126 -145
- package/front_end/panels/search/SearchView.ts +43 -59
- package/front_end/panels/settings/components/SyncSection.ts +16 -8
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +6 -1
- package/front_end/panels/sources/OutlineQuickOpen.ts +3 -1
- package/front_end/panels/sources/SourcesPanel.ts +3 -0
- package/front_end/panels/timeline/AppenderUtils.ts +2 -2
- package/front_end/panels/timeline/ExtensionTrackAppender.ts +13 -4
- package/front_end/panels/timeline/GPUTrackAppender.ts +2 -1
- package/front_end/panels/timeline/InteractionsTrackAppender.ts +5 -1
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +2 -1
- package/front_end/panels/timeline/ThreadAppender.ts +12 -3
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +9 -4
- package/front_end/panels/timeline/TimelinePanel.ts +3 -2
- package/front_end/panels/timeline/TimelineUIUtils.ts +18 -12
- package/front_end/panels/timeline/TimingsTrackAppender.ts +6 -1
- package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +95 -82
- package/front_end/panels/timeline/components/LiveMetricsView.ts +2 -2
- package/front_end/panels/timeline/components/cpuThrottlingSelector.css +17 -15
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +3 -0
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
- package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +6 -9
- package/front_end/third_party/codemirror.next/package.json +2 -1
- package/front_end/third_party/diff/README.chromium +1 -0
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +0 -20
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +2 -23
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +0 -20
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/package.json +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +1 -21
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/revisions.ts +1 -1
- package/front_end/ui/components/text_editor/config.ts +36 -8
- package/front_end/ui/components/tooltips/Tooltip.ts +71 -34
- package/front_end/ui/legacy/README.md +33 -24
- package/front_end/ui/legacy/SearchableView.ts +19 -26
- package/front_end/ui/legacy/TextPrompt.ts +166 -1
- package/front_end/ui/legacy/Treeoutline.ts +16 -2
- package/front_end/ui/legacy/UIUtils.ts +15 -2
- package/front_end/ui/legacy/XElement.ts +0 -43
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +20 -4
- package/front_end/ui/visual_logging/KnownContextValues.ts +24 -6
- package/front_end/ui/visual_logging/README.md +43 -27
- package/package.json +1 -1
package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt
CHANGED
@@ -8,10 +8,10 @@ Network requests data:
|
|
8
8
|
|
9
9
|
allUrls = [0: http://localhost:8000/, 1: https://code.jquery.com/jquery-3.7.1.js, 2: http://localhost:8000/render-blocking-stylesheet.css, 3: http://localhost:8000/render-blocking-script.js]
|
10
10
|
|
11
|
-
0;2 ms;3 ms;576 ms;583 ms;582 ms;0.4 ms;7 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;http/1.0;f;;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:27 GMT|Content-type: text/html|Last-Modified: Fri, 07 Mar 2025 14:58:55 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
|
12
|
-
1;581 ms;585 ms;1,943 ms;1,944 ms;1,363 ms;776 ms;1 ms;200;application/javascript;High;High;High;t;h2;f;0;[];[content-encoding: gzip|etag: <redacted>|age: 3975412|x-cache: <redacted>|date: Fri, 07 Mar 2025 15:02:28 GMT|content-type: application/javascript; charset=utf-8|vary: Accept-Encoding|x-cache-hits: <redacted>|last-modified: Fri, 18 Oct 1991 12:00:00 GMT|x-served-by: <redacted>|cache-control: public, max-age=31536000, stale-while-revalidate=604800|x-timer: <redacted>|via: 1.1 varnish, 1.1 varnish|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: nginx]
|
13
|
-
2;582 ms;583 ms;1,193 ms;1,193 ms;612 ms;0.2 ms;0.2 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;http/1.0;f;0;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/css|Last-Modified: Fri, 07 Mar 2025 14:58:07 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
|
14
|
-
3;582 ms;583 ms;1,177 ms;1,178 ms;596 ms;0.4 ms;1 ms;200;text/javascript;High;High;High;t;http/1.0;f;0;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/javascript|Last-Modified: Fri, 07 Mar 2025 15:00:28 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
|
11
|
+
0;s-1803;2 ms;3 ms;576 ms;583 ms;582 ms;0.4 ms;7 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;http/1.0;f;;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:27 GMT|Content-type: text/html|Last-Modified: Fri, 07 Mar 2025 14:58:55 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
|
12
|
+
1;s-1920;581 ms;585 ms;1,943 ms;1,944 ms;1,363 ms;776 ms;1 ms;200;application/javascript;High;High;High;t;h2;f;0;[];[content-encoding: gzip|etag: <redacted>|age: 3975412|x-cache: <redacted>|date: Fri, 07 Mar 2025 15:02:28 GMT|content-type: application/javascript; charset=utf-8|vary: Accept-Encoding|x-cache-hits: <redacted>|last-modified: Fri, 18 Oct 1991 12:00:00 GMT|x-served-by: <redacted>|cache-control: public, max-age=31536000, stale-while-revalidate=604800|x-timer: <redacted>|via: 1.1 varnish, 1.1 varnish|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: nginx]
|
13
|
+
2;s-1924;582 ms;583 ms;1,193 ms;1,193 ms;612 ms;0.2 ms;0.2 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;http/1.0;f;0;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/css|Last-Modified: Fri, 07 Mar 2025 14:58:07 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
|
14
|
+
3;s-1922;582 ms;583 ms;1,177 ms;1,178 ms;596 ms;0.4 ms;1 ms;200;text/javascript;High;High;High;t;http/1.0;f;0;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/javascript|Last-Modified: Fri, 07 Mar 2025 15:00:28 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
|
15
15
|
=== end content
|
16
16
|
|
17
17
|
Title: PerformanceTraceFormatter formatLongestTasks
|
@@ -745,52 +745,52 @@ Network requests data:
|
|
745
745
|
|
746
746
|
allUrls = [0: https://news.yahoo.com/, 1: https://s.yimg.com/cv/apiv2/ngy-fonts/YahooSans-VF-Web.woff2, 2: https://s.yimg.com/aaq/wf/wf-loader-2.7.21-modern.js, 3: https://consent.cmp.oath.com/version/7.0.0/cmp.js, 4: https://s.yimg.com/oa/consent.js, 5: https://s.yimg.com/aaq/fp/js/tdv2-wafer-utils.customErrorHandler.bcda778b736c3a054af62f437b536e78.js, 6: https://s.yimg.com/aaq/scp/js/fpDesktop.46ec7cd52ee9f5c1236b0dea5072690a.js, 7: https://s.yimg.com/aaq/benji/benji-2.2.99.js, 8: https://s.yimg.com/aaq/wf/wf-caas-1.36.6-modern.js, 9: https://s.yimg.com/aaq/wf/wf-toggle-1.15.4-modern.js, 10: https://s.yimg.com/aaq/fp/js/react-wafer-featurebar.custom.modern.12732500bc8e47693f0d777bbe88001c.js, 11: https://s.yimg.com/aaq/wf/wf-bind-1.1.3-modern.js, 12: https://s.yimg.com/aaq/wf/wf-text-1.2.0-modern.js, 13: https://s.yimg.com/aaq/wf/wf-video-3.2.2-modern.js, 14: https://s.yimg.com/aaq/wf/wf-image-1.4.0-modern.js, 15: https://s.yimg.com/aaq/wf/wf-rapid-1.10.9-modern.js, 16: https://s.yimg.com/aaq/wf/wf-action-1.8.1-modern.js, 17: https://s.yimg.com/aaq/wf/wf-template-1.4.3-modern.js, 18: https://s.yimg.com/aaq/wf/wf-menu-1.3.5-modern.js, 19: https://s.yimg.com/aaq/wf/wf-fetch-1.19.1-modern.js, 20: https://s.yimg.com/aaq/wf/wf-beacon-1.3.4-modern.js, 21: https://s.yimg.com/aaq/wf/wf-benji-1.2.0-modern.js, 22: https://s.yimg.com/aaq/wf/wf-clipboard-copy-1.0.2-modern.js, 23: https://s.yimg.com/aaq/wf/wf-form-1.34.5-modern.js, 24: https://s.yimg.com/aaq/wf/wf-countdown-1.2.5-modern.js, 25: https://s.yimg.com/aaq/wf/wf-scrollview-2.23.3-modern.js, 26: https://s.yimg.com/aaq/wf/wf-lightbox-1.10.6-modern.js, 27: https://s.yimg.com/aaq/wf/wf-native-da-1.0.5-modern.js, 28: https://s.yimg.com/aaq/fp/js/react-wafer-stream.custom.modern.1ed4fe71b1fc647ddbf37a7050944309.js, 29: https://s.yimg.com/aaq/wf/wf-autocomplete-1.31.8-modern.js, 30: https://s.yimg.com/aaq/wf/wf-geolocation-1.3.0-modern.js, 31: https://s.yimg.com/aaq/wf/wf-sticky-1.2.6-modern.js, 32: https://s.yimg.com/aaq/c/25fa214.caas-news_web.min.js, 33: https://news.yahoo.com/info/p.gif?apptype=default&beaconType=pageRenderStart&code=pageRender&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless&device=desktop&intl=us&rid=1oa3lh9juean4&site=news&t=1743203044494, 34: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, 35: https://noa.yahoo.com/p?s=1197800621&t=1743203044438&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=gamDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=unknown&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=SIGNALS_SESSION_START, 36: https://signal-service.pbs.yahoo.com/v1/signal/refresh, 37: https://securepubads.g.doubleclick.net/tag/js/gpt.js, 38: https://noa.yahoo.com/p?s=1197800621&t=1743203044440&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=gamDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=unknown&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=PREBID_SESSION_START, 39: https://s.yimg.com/du/ay/wnsrvbjmeprtfrnfx.js, 40: https://s.yimg.com/aaq/prebid/prebid-2.0.js, 41: https://s.yimg.com/eh/prebid-config/bp-news.json, 42: https://noa.yahoo.com/p?s=1197800621&t=1743203044441&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=taboolaDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=home&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=TABOOLA_SESSION_START, 43: https://cdn.taboola.com/libtrc/yahooweb-network/loader.js, 44: https://opus.analytics.yahoo.com/tag/opus.js, 45: https://noa.yahoo.com/p?s=1197800621&t=1743203044441&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=gamDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=home&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=BENJI_SESSION_START]
|
747
747
|
|
748
|
-
0;0.4 ms;3 ms;393 ms;493 ms;492 ms;177 ms;100 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;h2;f;;[];[strict-transport-security: max-age=31536000|content-security-policy: frame-ancestors 'self' https://*.builtbygirls.com https://*.rivals.com https://*.engadget.com https://*.intheknow.com https://*.autoblog.com https://*.techcrunch.com https://*.yahoo.com https://*.aol.com https://*.huffingtonpost.com https://*.oath.com https://*.search.yahoo.com https://*.pnr.ouryahoo.com https://pnr.ouryahoo.com https://*.search.aol.com https://*.search.huffpost.com https://*.onesearch.com https://*.verizonmedia.com https://*.publishing.oath.com https://*.autoblog.com; sandbox allow-forms allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox allow-presentation; report-uri https://csp.yahoo.com/beacon/csp?src=ats&site=news®ion=US&lang=en-US&device=desktop&yrid=1oa3lh9juean4&partner=;|content-encoding: gzip|x-envoy-upstream-service-time: <redacted>|age: 0|expect-ct: max-age=31536000, report-uri="http://csp.yahoo.com/beacon/csp?src=yahoocom-expect-ct-report-only|referrer-policy: <redacted>|x-content-type-options: nosniff|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: text/html; charset=utf-8|vary: Accept-Encoding|server: ATS|x-frame-options: SAMEORIGIN]
|
749
|
-
1;220 ms;224 ms;306 ms;340 ms;120 ms;54 ms;34 ms;200;font/woff2;High;High;High;f;h2;f;0;[];[etag: <redacted>|age: 1586039|date: Mon, 10 Mar 2025 14:30:06 GMT|last-modified: Mon, 30 Nov 2020 20:20:29 GMT|content-type: font/woff2|vary: Origin|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
750
|
-
2;253 ms;257 ms;260 ms;261 ms;8 ms;2 ms;0.8 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1678049|x-amz-version-id: <redacted>|date: Sun, 09 Mar 2025 12:55:21 GMT|content-type: application/javascript|last-modified: Mon, 16 Sep 2024 04:28:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
751
|
-
3;254 ms;258 ms;282 ms;284 ms;30 ms;2 ms;2 ms;200;application/javascript;Low;Low;Low;f;h2;f;0;[];[x-amz-cf-pop: <redacted>|vary: accept-encoding|cache-control: max-age=3600|content-encoding: gzip|etag: <redacted>|age: 2567|via: 1.1 d8792dbd3191bbe722eba5b536b979c8.cloudfront.net (CloudFront)|x-cache: <redacted>|x-amz-cf-id: <redacted>|date: Fri, 28 Mar 2025 22:21:18 GMT|content-type: application/javascript|last-modified: Thu, 14 Nov 2024 18:50:18 GMT|x-amz-expiration: <redacted>|server: AmazonS3|x-amz-server-side-encryption: <redacted>]
|
752
|
-
4;254 ms;259 ms;319 ms;340 ms;87 ms;39 ms;22 ms;200;application/javascript;Low;Low;Low;f;h2;f;0;[];[content-encoding: gzip|etag: <redacted>|age: 11|date: Fri, 28 Mar 2025 23:03:54 GMT|last-modified: Thu, 27 Mar 2025 06:47:41 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: max-age=300|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
753
|
-
5;254 ms;257 ms;260 ms;261 ms;7 ms;2 ms;1 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1189304|x-amz-version-id: <redacted>|date: Sat, 15 Mar 2025 04:41:06 GMT|content-type: application/javascript|last-modified: Wed, 22 Nov 2023 02:30:41 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
754
|
-
6;254 ms;257 ms;260 ms;261 ms;7 ms;2 ms;0.7 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1180484|x-amz-version-id: <redacted>|date: Sat, 15 Mar 2025 07:08:06 GMT|content-type: application/javascript|last-modified: Tue, 17 Sep 2024 14:42:49 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
755
|
-
7;254 ms;257 ms;262 ms;266 ms;13 ms;4 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 779545|x-amz-version-id: <redacted>|date: Wed, 19 Mar 2025 22:30:25 GMT|content-type: application/javascript|last-modified: Wed, 19 Mar 2025 21:18:45 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
756
|
-
8;254 ms;257 ms;263 ms;263 ms;9 ms;4 ms;0.4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1404952|x-amz-version-id: <redacted>|date: Wed, 12 Mar 2025 16:46:58 GMT|content-type: application/javascript|last-modified: Mon, 24 Jun 2024 16:46:18 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
757
|
-
9;254 ms;257 ms;263 ms;264 ms;10 ms;4 ms;0.8 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 116033|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 14:48:58 GMT|content-type: application/javascript|last-modified: Wed, 20 Apr 2022 09:12:23 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
758
|
-
10;254 ms;257 ms;263 ms;264 ms;10 ms;4 ms;0.6 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1665967|x-amz-version-id: <redacted>|date: Sun, 09 Mar 2025 16:16:43 GMT|content-type: application/javascript|last-modified: Thu, 04 Aug 2022 04:32:27 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
759
|
-
11;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 335566|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 01:50:04 GMT|content-type: application/javascript|last-modified: Tue, 11 Jan 2022 10:14:03 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
760
|
-
12;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1262862|x-amz-version-id: <redacted>|date: Fri, 14 Mar 2025 08:15:08 GMT|content-type: application/javascript|last-modified: Mon, 23 Aug 2021 06:24:25 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
761
|
-
13;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 110834|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 16:15:36 GMT|content-type: application/javascript|last-modified: Mon, 16 Sep 2024 04:28:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
762
|
-
14;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1036009|x-amz-version-id: <redacted>|date: Sun, 16 Mar 2025 23:16:01 GMT|content-type: application/javascript|last-modified: Fri, 15 Apr 2022 16:44:15 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
763
|
-
15;254 ms;257 ms;263 ms;267 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 197559|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 16:10:12 GMT|content-type: application/javascript|last-modified: Tue, 02 Jul 2024 08:11:25 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
764
|
-
16;254 ms;257 ms;263 ms;267 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1373344|x-amz-version-id: <redacted>|date: Thu, 13 Mar 2025 01:33:47 GMT|content-type: application/javascript|last-modified: Thu, 21 Dec 2023 17:55:26 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
765
|
-
17;254 ms;257 ms;263 ms;267 ms;13 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 272797|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 19:16:13 GMT|content-type: application/javascript|last-modified: Wed, 21 Sep 2022 02:22:21 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
766
|
-
18;254 ms;257 ms;264 ms;267 ms;13 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 687342|x-amz-version-id: <redacted>|date: Fri, 21 Mar 2025 00:07:08 GMT|content-type: application/javascript|last-modified: Mon, 20 May 2024 05:06:00 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
767
|
-
19;254 ms;257 ms;264 ms;267 ms;13 ms;3 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 412067|x-amz-version-id: <redacted>|date: Mon, 24 Mar 2025 04:35:03 GMT|content-type: application/javascript|last-modified: Fri, 20 Oct 2023 09:18:13 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
768
|
-
20;254 ms;257 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1630236|x-amz-version-id: <redacted>|date: Mon, 10 Mar 2025 02:12:14 GMT|content-type: application/javascript|last-modified: Mon, 13 Feb 2023 05:31:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
769
|
-
21;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 226768|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 08:03:23 GMT|content-type: application/javascript|last-modified: Mon, 20 May 2024 21:26:01 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
770
|
-
22;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1033339|x-amz-version-id: <redacted>|date: Mon, 17 Mar 2025 00:00:31 GMT|content-type: application/javascript|last-modified: Mon, 24 May 2021 16:40:35 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
771
|
-
23;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 950151|x-amz-version-id: <redacted>|date: Mon, 17 Mar 2025 23:06:59 GMT|content-type: application/javascript|last-modified: Mon, 13 Nov 2023 22:30:39 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
772
|
-
24;254 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 903529|x-amz-version-id: <redacted>|date: Tue, 18 Mar 2025 12:04:01 GMT|content-type: application/javascript|last-modified: Sun, 13 Sep 2020 18:50:05 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=315360000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
773
|
-
25;255 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 108194|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 16:59:36 GMT|content-type: application/javascript|last-modified: Thu, 13 Jun 2024 07:21:57 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
774
|
-
26;255 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1047519|x-amz-version-id: <redacted>|date: Sun, 16 Mar 2025 20:04:11 GMT|content-type: application/javascript|last-modified: Wed, 01 Mar 2023 01:43:59 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
775
|
-
27;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 15169|x-amz-version-id: <redacted>|date: Fri, 28 Mar 2025 18:50:01 GMT|content-type: application/javascript|last-modified: Wed, 13 Mar 2024 00:20:57 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
776
|
-
28;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 277599|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 17:56:11 GMT|content-type: application/javascript|last-modified: Sat, 02 Dec 2023 00:17:32 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
777
|
-
29;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 538292|x-amz-version-id: <redacted>|date: Sat, 22 Mar 2025 17:31:18 GMT|content-type: application/javascript|last-modified: Mon, 04 Dec 2023 12:09:37 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
778
|
-
30;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 185757|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 19:26:54 GMT|content-type: application/javascript|last-modified: Sun, 26 Jun 2022 23:02:47 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
779
|
-
31;255 ms;258 ms;264 ms;268 ms;14 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 653962|x-amz-version-id: <redacted>|date: Fri, 21 Mar 2025 09:23:28 GMT|content-type: application/javascript|last-modified: Fri, 26 Jan 2024 23:41:32 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
780
|
-
32;255 ms;258 ms;264 ms;268 ms;14 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 67892|x-amz-version-id: <redacted>|date: Fri, 28 Mar 2025 04:11:18 GMT|content-type: application/javascript|last-modified: Fri, 28 Mar 2025 02:55:19 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
781
|
-
33;256 ms;258 ms;306 ms;306 ms;51 ms;0.4 ms;0.8 ms;204;image/gif;Low;Low;Low;f;h2;f;0;[];[strict-transport-security: max-age=31536000|content-security-policy: frame-ancestors 'self' https://*.builtbygirls.com https://*.rivals.com https://*.engadget.com https://*.intheknow.com https://*.autoblog.com https://*.techcrunch.com https://*.yahoo.com https://*.aol.com https://*.huffingtonpost.com https://*.oath.com https://*.search.yahoo.com https://*.pnr.ouryahoo.com https://pnr.ouryahoo.com https://*.search.aol.com https://*.search.huffpost.com https://*.onesearch.com https://*.verizonmedia.com https://*.publishing.oath.com https://*.autoblog.com; sandbox allow-forms allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox allow-presentation; report-uri https://csp.yahoo.com/beacon/csp?src=ats&site=news®ion=US&lang=en-US&device=desktop&yrid=5agdahtjuean4&partner=;|cache-control: max-age=0, private|x-envoy-upstream-service-time: <redacted>|age: 0|expect-ct: max-age=31536000, report-uri="http://csp.yahoo.com/beacon/csp?src=yahoocom-expect-ct-report-only|referrer-policy: <redacted>|content-security-policy-report-only: <redacted>|x-content-type-options: nosniff|expires: -1|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|x-powered-by: Express|server: ATS]
|
782
|
-
34;271 ms;276 ms;336 ms;341 ms;70 ms;17 ms;5 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|x-amz-version-id: <redacted>|etag: <redacted>|age: 1195|date: Fri, 28 Mar 2025 22:44:10 GMT|last-modified: Tue, 25 Mar 2025 14:28:13 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=1800|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
783
|
-
35;271 ms;272 ms;301 ms;306 ms;36 ms;0.7 ms;5 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
784
|
-
36;272 ms;334 ms;373 ms;483 ms;212 ms;0.2 ms;110 ms;200;application/json;High;High;High;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|x-envoy-upstream-service-time: <redacted>|age: 0|access-control-allow-credentials: true|x-content-type-options: nosniff|referrer-policy: <redacted>|x-envoy-decorator-operation: <redacted>|access-control-allow-origin: https://news.yahoo.com|content-length: <redacted>|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: application/json|vary: Origin,Accept-Encoding|server: ATS|x-frame-options: SAMEORIGIN]
|
785
|
-
37;272 ms;276 ms;317 ms;340 ms;68 ms;1 ms;24 ms;200;text/javascript;Low;Low;Low;f;h3;f;0,7;[];[content-encoding: br|etag: <redacted>|x-content-type-options: nosniff|expires: Fri, 28 Mar 2025 23:04:04 GMT|alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000|p3p: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: text/javascript; charset=UTF-8|vary: Accept-Encoding|content-disposition: attachment; filename="f.txt"|cache-control: private, max-age=900, stale-while-revalidate=3600|timing-allow-origin: *|cross-origin-resource-policy: <redacted>|access-control-allow-origin: *|content-length: <redacted>|x-xss-protection: 0|server: cafe]
|
786
|
-
38;272 ms;273 ms;301 ms;307 ms;35 ms;0.9 ms;6 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
787
|
-
39;272 ms;276 ms;338 ms;341 ms;69 ms;2 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|etag: <redacted>|age: 304|date: Fri, 28 Mar 2025 22:59:01 GMT|last-modified: Mon, 20 Jan 2025 00:24:25 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=600|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
788
|
-
40;272 ms;276 ms;369 ms;440 ms;168 ms;31 ms;71 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|x-amz-version-id: <redacted>|etag: <redacted>|age: 1207|date: Fri, 28 Mar 2025 22:43:58 GMT|last-modified: Thu, 27 Mar 2025 19:05:16 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=1800|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
789
|
-
41;272 ms;273 ms;307 ms;350 ms;77 ms;0.5 ms;43 ms;200;application/json;High;High;High;f;h2;f;0,7;[];[access-control-max-age: 3000|access-control-expose-headers: Access-Control-Allow-Origin|content-encoding: gzip|etag: <redacted>|age: 203|access-control-allow-methods: GET, HEAD|date: Fri, 28 Mar 2025 23:00:42 GMT|last-modified: Fri, 28 Mar 2025 21:13:20 GMT|vary: Origin, Access-Control-Request-Headers, Access-Control-Request-Method, Accept-Encoding|content-type: application/json|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=86400|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
790
|
-
42;273 ms;274 ms;301 ms;307 ms;34 ms;0.8 ms;6 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
791
|
-
43;273 ms;276 ms;322 ms;341 ms;67 ms;6 ms;18 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|etag: <redacted>|x-amz-version-id: <redacted>|age: 63|x-cache: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|last-modified: Thu, 27 Mar 2025 14:46:52 GMT|x-served-by: <redacted>|x-cache-hits: <redacted>|content-type: application/javascript; charset=utf-8|x-amz-id-2: <redacted>|vary: Accept-Encoding|x-amz-replication-status: <redacted>|cache-control: private,max-age=14401|x-timer: <redacted>|via: 1.1 varnish|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|abp: <redacted>|content-length: <redacted>|server: AmazonS3|x-amz-server-side-encryption: <redacted>]
|
792
|
-
44;274 ms;275 ms;296 ms;300 ms;26 ms;0.4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[x-amz-cf-pop: <redacted>|content-security-policy: default-src https:; script-src https: 'unsafe-inline'; style-src https: 'unsafe-inline'|content-encoding: gzip|etag: <redacted>|age: 54075|via: 1.1 7e87179efaa9e3c316bd3d3a74cfded8.cloudfront.net (CloudFront)|x-cache: <redacted>|x-amz-cf-id: <redacted>|date: Fri, 28 Mar 2025 08:02:50 GMT|content-type: application/javascript|vary: Accept-Encoding|server: AmazonS3|last-modified: Wed, 12 Mar 2025 14:48:50 GMT|x-amz-server-side-encryption: <redacted>]
|
793
|
-
45;274 ms;276 ms;305 ms;340 ms;66 ms;0.3 ms;34 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
748
|
+
0;s-2116;0.4 ms;3 ms;393 ms;493 ms;492 ms;177 ms;100 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;h2;f;;[];[strict-transport-security: max-age=31536000|content-security-policy: frame-ancestors 'self' https://*.builtbygirls.com https://*.rivals.com https://*.engadget.com https://*.intheknow.com https://*.autoblog.com https://*.techcrunch.com https://*.yahoo.com https://*.aol.com https://*.huffingtonpost.com https://*.oath.com https://*.search.yahoo.com https://*.pnr.ouryahoo.com https://pnr.ouryahoo.com https://*.search.aol.com https://*.search.huffpost.com https://*.onesearch.com https://*.verizonmedia.com https://*.publishing.oath.com https://*.autoblog.com; sandbox allow-forms allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox allow-presentation; report-uri https://csp.yahoo.com/beacon/csp?src=ats&site=news®ion=US&lang=en-US&device=desktop&yrid=1oa3lh9juean4&partner=;|content-encoding: gzip|x-envoy-upstream-service-time: <redacted>|age: 0|expect-ct: max-age=31536000, report-uri="http://csp.yahoo.com/beacon/csp?src=yahoocom-expect-ct-report-only|referrer-policy: <redacted>|x-content-type-options: nosniff|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: text/html; charset=utf-8|vary: Accept-Encoding|server: ATS|x-frame-options: SAMEORIGIN]
|
749
|
+
1;s-2256;220 ms;224 ms;306 ms;340 ms;120 ms;54 ms;34 ms;200;font/woff2;High;High;High;f;h2;f;0;[];[etag: <redacted>|age: 1586039|date: Mon, 10 Mar 2025 14:30:06 GMT|last-modified: Mon, 30 Nov 2020 20:20:29 GMT|content-type: font/woff2|vary: Origin|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
750
|
+
2;s-3277;253 ms;257 ms;260 ms;261 ms;8 ms;2 ms;0.8 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1678049|x-amz-version-id: <redacted>|date: Sun, 09 Mar 2025 12:55:21 GMT|content-type: application/javascript|last-modified: Mon, 16 Sep 2024 04:28:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
751
|
+
3;s-3382;254 ms;258 ms;282 ms;284 ms;30 ms;2 ms;2 ms;200;application/javascript;Low;Low;Low;f;h2;f;0;[];[x-amz-cf-pop: <redacted>|vary: accept-encoding|cache-control: max-age=3600|content-encoding: gzip|etag: <redacted>|age: 2567|via: 1.1 d8792dbd3191bbe722eba5b536b979c8.cloudfront.net (CloudFront)|x-cache: <redacted>|x-amz-cf-id: <redacted>|date: Fri, 28 Mar 2025 22:21:18 GMT|content-type: application/javascript|last-modified: Thu, 14 Nov 2024 18:50:18 GMT|x-amz-expiration: <redacted>|server: AmazonS3|x-amz-server-side-encryption: <redacted>]
|
752
|
+
4;s-3384;254 ms;259 ms;319 ms;340 ms;87 ms;39 ms;22 ms;200;application/javascript;Low;Low;Low;f;h2;f;0;[];[content-encoding: gzip|etag: <redacted>|age: 11|date: Fri, 28 Mar 2025 23:03:54 GMT|last-modified: Thu, 27 Mar 2025 06:47:41 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: max-age=300|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
753
|
+
5;s-3385;254 ms;257 ms;260 ms;261 ms;7 ms;2 ms;1 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1189304|x-amz-version-id: <redacted>|date: Sat, 15 Mar 2025 04:41:06 GMT|content-type: application/javascript|last-modified: Wed, 22 Nov 2023 02:30:41 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
754
|
+
6;s-3386;254 ms;257 ms;260 ms;261 ms;7 ms;2 ms;0.7 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1180484|x-amz-version-id: <redacted>|date: Sat, 15 Mar 2025 07:08:06 GMT|content-type: application/javascript|last-modified: Tue, 17 Sep 2024 14:42:49 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
755
|
+
7;s-3387;254 ms;257 ms;262 ms;266 ms;13 ms;4 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 779545|x-amz-version-id: <redacted>|date: Wed, 19 Mar 2025 22:30:25 GMT|content-type: application/javascript|last-modified: Wed, 19 Mar 2025 21:18:45 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
756
|
+
8;s-3388;254 ms;257 ms;263 ms;263 ms;9 ms;4 ms;0.4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1404952|x-amz-version-id: <redacted>|date: Wed, 12 Mar 2025 16:46:58 GMT|content-type: application/javascript|last-modified: Mon, 24 Jun 2024 16:46:18 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
757
|
+
9;s-3389;254 ms;257 ms;263 ms;264 ms;10 ms;4 ms;0.8 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 116033|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 14:48:58 GMT|content-type: application/javascript|last-modified: Wed, 20 Apr 2022 09:12:23 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
758
|
+
10;s-3390;254 ms;257 ms;263 ms;264 ms;10 ms;4 ms;0.6 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1665967|x-amz-version-id: <redacted>|date: Sun, 09 Mar 2025 16:16:43 GMT|content-type: application/javascript|last-modified: Thu, 04 Aug 2022 04:32:27 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
759
|
+
11;s-3391;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 335566|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 01:50:04 GMT|content-type: application/javascript|last-modified: Tue, 11 Jan 2022 10:14:03 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
760
|
+
12;s-3392;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1262862|x-amz-version-id: <redacted>|date: Fri, 14 Mar 2025 08:15:08 GMT|content-type: application/javascript|last-modified: Mon, 23 Aug 2021 06:24:25 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
761
|
+
13;s-3393;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 110834|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 16:15:36 GMT|content-type: application/javascript|last-modified: Mon, 16 Sep 2024 04:28:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
762
|
+
14;s-3394;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1036009|x-amz-version-id: <redacted>|date: Sun, 16 Mar 2025 23:16:01 GMT|content-type: application/javascript|last-modified: Fri, 15 Apr 2022 16:44:15 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
763
|
+
15;s-3395;254 ms;257 ms;263 ms;267 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 197559|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 16:10:12 GMT|content-type: application/javascript|last-modified: Tue, 02 Jul 2024 08:11:25 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
764
|
+
16;s-3396;254 ms;257 ms;263 ms;267 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1373344|x-amz-version-id: <redacted>|date: Thu, 13 Mar 2025 01:33:47 GMT|content-type: application/javascript|last-modified: Thu, 21 Dec 2023 17:55:26 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
765
|
+
17;s-3397;254 ms;257 ms;263 ms;267 ms;13 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 272797|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 19:16:13 GMT|content-type: application/javascript|last-modified: Wed, 21 Sep 2022 02:22:21 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
766
|
+
18;s-3398;254 ms;257 ms;264 ms;267 ms;13 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 687342|x-amz-version-id: <redacted>|date: Fri, 21 Mar 2025 00:07:08 GMT|content-type: application/javascript|last-modified: Mon, 20 May 2024 05:06:00 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
767
|
+
19;s-3399;254 ms;257 ms;264 ms;267 ms;13 ms;3 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 412067|x-amz-version-id: <redacted>|date: Mon, 24 Mar 2025 04:35:03 GMT|content-type: application/javascript|last-modified: Fri, 20 Oct 2023 09:18:13 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
768
|
+
20;s-3400;254 ms;257 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1630236|x-amz-version-id: <redacted>|date: Mon, 10 Mar 2025 02:12:14 GMT|content-type: application/javascript|last-modified: Mon, 13 Feb 2023 05:31:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
769
|
+
21;s-3401;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 226768|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 08:03:23 GMT|content-type: application/javascript|last-modified: Mon, 20 May 2024 21:26:01 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
770
|
+
22;s-3402;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1033339|x-amz-version-id: <redacted>|date: Mon, 17 Mar 2025 00:00:31 GMT|content-type: application/javascript|last-modified: Mon, 24 May 2021 16:40:35 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
771
|
+
23;s-3403;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 950151|x-amz-version-id: <redacted>|date: Mon, 17 Mar 2025 23:06:59 GMT|content-type: application/javascript|last-modified: Mon, 13 Nov 2023 22:30:39 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
772
|
+
24;s-3404;254 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 903529|x-amz-version-id: <redacted>|date: Tue, 18 Mar 2025 12:04:01 GMT|content-type: application/javascript|last-modified: Sun, 13 Sep 2020 18:50:05 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=315360000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
773
|
+
25;s-3405;255 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 108194|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 16:59:36 GMT|content-type: application/javascript|last-modified: Thu, 13 Jun 2024 07:21:57 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
774
|
+
26;s-3406;255 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1047519|x-amz-version-id: <redacted>|date: Sun, 16 Mar 2025 20:04:11 GMT|content-type: application/javascript|last-modified: Wed, 01 Mar 2023 01:43:59 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
775
|
+
27;s-3407;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 15169|x-amz-version-id: <redacted>|date: Fri, 28 Mar 2025 18:50:01 GMT|content-type: application/javascript|last-modified: Wed, 13 Mar 2024 00:20:57 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
776
|
+
28;s-3408;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 277599|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 17:56:11 GMT|content-type: application/javascript|last-modified: Sat, 02 Dec 2023 00:17:32 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
777
|
+
29;s-3409;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 538292|x-amz-version-id: <redacted>|date: Sat, 22 Mar 2025 17:31:18 GMT|content-type: application/javascript|last-modified: Mon, 04 Dec 2023 12:09:37 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
778
|
+
30;s-3410;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 185757|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 19:26:54 GMT|content-type: application/javascript|last-modified: Sun, 26 Jun 2022 23:02:47 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
779
|
+
31;s-3411;255 ms;258 ms;264 ms;268 ms;14 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 653962|x-amz-version-id: <redacted>|date: Fri, 21 Mar 2025 09:23:28 GMT|content-type: application/javascript|last-modified: Fri, 26 Jan 2024 23:41:32 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
780
|
+
32;s-3412;255 ms;258 ms;264 ms;268 ms;14 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 67892|x-amz-version-id: <redacted>|date: Fri, 28 Mar 2025 04:11:18 GMT|content-type: application/javascript|last-modified: Fri, 28 Mar 2025 02:55:19 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
781
|
+
33;s-3445;256 ms;258 ms;306 ms;306 ms;51 ms;0.4 ms;0.8 ms;204;image/gif;Low;Low;Low;f;h2;f;0;[];[strict-transport-security: max-age=31536000|content-security-policy: frame-ancestors 'self' https://*.builtbygirls.com https://*.rivals.com https://*.engadget.com https://*.intheknow.com https://*.autoblog.com https://*.techcrunch.com https://*.yahoo.com https://*.aol.com https://*.huffingtonpost.com https://*.oath.com https://*.search.yahoo.com https://*.pnr.ouryahoo.com https://pnr.ouryahoo.com https://*.search.aol.com https://*.search.huffpost.com https://*.onesearch.com https://*.verizonmedia.com https://*.publishing.oath.com https://*.autoblog.com; sandbox allow-forms allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox allow-presentation; report-uri https://csp.yahoo.com/beacon/csp?src=ats&site=news®ion=US&lang=en-US&device=desktop&yrid=5agdahtjuean4&partner=;|cache-control: max-age=0, private|x-envoy-upstream-service-time: <redacted>|age: 0|expect-ct: max-age=31536000, report-uri="http://csp.yahoo.com/beacon/csp?src=yahoocom-expect-ct-report-only|referrer-policy: <redacted>|content-security-policy-report-only: <redacted>|x-content-type-options: nosniff|expires: -1|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|x-powered-by: Express|server: ATS]
|
782
|
+
34;s-6185;271 ms;276 ms;336 ms;341 ms;70 ms;17 ms;5 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|x-amz-version-id: <redacted>|etag: <redacted>|age: 1195|date: Fri, 28 Mar 2025 22:44:10 GMT|last-modified: Tue, 25 Mar 2025 14:28:13 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=1800|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
783
|
+
35;s-6194;271 ms;272 ms;301 ms;306 ms;36 ms;0.7 ms;5 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
784
|
+
36;s-6224;272 ms;334 ms;373 ms;483 ms;212 ms;0.2 ms;110 ms;200;application/json;High;High;High;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|x-envoy-upstream-service-time: <redacted>|age: 0|access-control-allow-credentials: true|x-content-type-options: nosniff|referrer-policy: <redacted>|x-envoy-decorator-operation: <redacted>|access-control-allow-origin: https://news.yahoo.com|content-length: <redacted>|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: application/json|vary: Origin,Accept-Encoding|server: ATS|x-frame-options: SAMEORIGIN]
|
785
|
+
37;s-6244;272 ms;276 ms;317 ms;340 ms;68 ms;1 ms;24 ms;200;text/javascript;Low;Low;Low;f;h3;f;0,7;[];[content-encoding: br|etag: <redacted>|x-content-type-options: nosniff|expires: Fri, 28 Mar 2025 23:04:04 GMT|alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000|p3p: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: text/javascript; charset=UTF-8|vary: Accept-Encoding|content-disposition: attachment; filename="f.txt"|cache-control: private, max-age=900, stale-while-revalidate=3600|timing-allow-origin: *|cross-origin-resource-policy: <redacted>|access-control-allow-origin: *|content-length: <redacted>|x-xss-protection: 0|server: cafe]
|
786
|
+
38;s-6258;272 ms;273 ms;301 ms;307 ms;35 ms;0.9 ms;6 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
787
|
+
39;s-6273;272 ms;276 ms;338 ms;341 ms;69 ms;2 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|etag: <redacted>|age: 304|date: Fri, 28 Mar 2025 22:59:01 GMT|last-modified: Mon, 20 Jan 2025 00:24:25 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=600|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
788
|
+
40;s-6279;272 ms;276 ms;369 ms;440 ms;168 ms;31 ms;71 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|x-amz-version-id: <redacted>|etag: <redacted>|age: 1207|date: Fri, 28 Mar 2025 22:43:58 GMT|last-modified: Thu, 27 Mar 2025 19:05:16 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=1800|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
789
|
+
41;s-6293;272 ms;273 ms;307 ms;350 ms;77 ms;0.5 ms;43 ms;200;application/json;High;High;High;f;h2;f;0,7;[];[access-control-max-age: 3000|access-control-expose-headers: Access-Control-Allow-Origin|content-encoding: gzip|etag: <redacted>|age: 203|access-control-allow-methods: GET, HEAD|date: Fri, 28 Mar 2025 23:00:42 GMT|last-modified: Fri, 28 Mar 2025 21:13:20 GMT|vary: Origin, Access-Control-Request-Headers, Access-Control-Request-Method, Accept-Encoding|content-type: application/json|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=86400|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
790
|
+
42;s-6341;273 ms;274 ms;301 ms;307 ms;34 ms;0.8 ms;6 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
791
|
+
43;s-6352;273 ms;276 ms;322 ms;341 ms;67 ms;6 ms;18 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|etag: <redacted>|x-amz-version-id: <redacted>|age: 63|x-cache: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|last-modified: Thu, 27 Mar 2025 14:46:52 GMT|x-served-by: <redacted>|x-cache-hits: <redacted>|content-type: application/javascript; charset=utf-8|x-amz-id-2: <redacted>|vary: Accept-Encoding|x-amz-replication-status: <redacted>|cache-control: private,max-age=14401|x-timer: <redacted>|via: 1.1 varnish|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|abp: <redacted>|content-length: <redacted>|server: AmazonS3|x-amz-server-side-encryption: <redacted>]
|
792
|
+
44;s-6368;274 ms;275 ms;296 ms;300 ms;26 ms;0.4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[x-amz-cf-pop: <redacted>|content-security-policy: default-src https:; script-src https: 'unsafe-inline'; style-src https: 'unsafe-inline'|content-encoding: gzip|etag: <redacted>|age: 54075|via: 1.1 7e87179efaa9e3c316bd3d3a74cfded8.cloudfront.net (CloudFront)|x-cache: <redacted>|x-amz-cf-id: <redacted>|date: Fri, 28 Mar 2025 08:02:50 GMT|content-type: application/javascript|vary: Accept-Encoding|server: AmazonS3|last-modified: Wed, 12 Mar 2025 14:48:50 GMT|x-amz-server-side-encryption: <redacted>]
|
793
|
+
45;s-6379;274 ms;276 ms;305 ms;340 ms;66 ms;0.3 ms;34 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
794
794
|
|
795
795
|
# Related insights
|
796
796
|
|
@@ -1053,3 +1053,177 @@ Available insights:
|
|
1053
1053
|
relevant trace bounds: {min: 59728701403, max: 59729465969}
|
1054
1054
|
example question: Which third parties are having the largest impact on my page performance?
|
1055
1055
|
=== end content
|
1056
|
+
|
1057
|
+
Title: PerformanceTraceFormatter formatNetworkRequests formats network requests that have redirects
|
1058
|
+
Content:
|
1059
|
+
## Network request: http://localhost:3000/redirect3
|
1060
|
+
eventKey: s-9843
|
1061
|
+
Timings:
|
1062
|
+
- Queued at: 3 ms
|
1063
|
+
- Request sent at: 1,529 ms
|
1064
|
+
- Download complete at: 3,533 ms
|
1065
|
+
- Main thread processing completed at: 3,538 ms
|
1066
|
+
Durations:
|
1067
|
+
- Download time: 0.1 ms
|
1068
|
+
- Main thread processing time: 5 ms
|
1069
|
+
- Total duration: 3,535 ms
|
1070
|
+
Redirects:
|
1071
|
+
#### Redirect 1: http://localhost:3000/
|
1072
|
+
- Start time: 3 ms
|
1073
|
+
- Duration: 512 ms
|
1074
|
+
#### Redirect 2: http://localhost:3000/redirect1
|
1075
|
+
- Start time: 515 ms
|
1076
|
+
- Duration: 506 ms
|
1077
|
+
#### Redirect 3: http://localhost:3000/redirect2
|
1078
|
+
- Start time: 1,021 ms
|
1079
|
+
- Duration: 507 ms
|
1080
|
+
Status code: 200
|
1081
|
+
MIME Type: text/html
|
1082
|
+
Protocol: http/1.1
|
1083
|
+
Priority: VeryHigh
|
1084
|
+
Render blocking: No
|
1085
|
+
From a service worker: No
|
1086
|
+
Initiators (root request to the request that directly loaded this one): none
|
1087
|
+
Response headers
|
1088
|
+
- Transfer-Encoding: chunked
|
1089
|
+
- Keep-Alive: <redacted>
|
1090
|
+
- Date: Tue, 11 Mar 2025 10:19:12 GMT
|
1091
|
+
- Content-Type: text/html
|
1092
|
+
- Connection: keep-alive
|
1093
|
+
=== end content
|
1094
|
+
|
1095
|
+
Title: PerformanceTraceFormatter formatNetworkRequests formats network requests in verbose mode
|
1096
|
+
Content:
|
1097
|
+
## Network request: https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800
|
1098
|
+
eventKey: s-1046
|
1099
|
+
Timings:
|
1100
|
+
- Queued at: 38 ms
|
1101
|
+
- Request sent at: 42 ms
|
1102
|
+
- Download complete at: 48 ms
|
1103
|
+
- Main thread processing completed at: 52 ms
|
1104
|
+
Durations:
|
1105
|
+
- Download time: 5 ms
|
1106
|
+
- Main thread processing time: 4 ms
|
1107
|
+
- Total duration: 14 ms
|
1108
|
+
Initiator: https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
|
1109
|
+
Redirects: no redirects
|
1110
|
+
Status code: 200
|
1111
|
+
MIME Type: text/css
|
1112
|
+
Protocol: unknown
|
1113
|
+
Priority: VeryHigh
|
1114
|
+
Render blocking: Yes
|
1115
|
+
From a service worker: No
|
1116
|
+
Initiators (root request to the request that directly loaded this one): https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
|
1117
|
+
Response headers
|
1118
|
+
- date: Thu, 07 Mar 2024 21:17:02 GMT
|
1119
|
+
- content-encoding: gzip
|
1120
|
+
- x-content-type-options: nosniff
|
1121
|
+
- last-modified: Thu, 07 Mar 2024 21:17:02 GMT
|
1122
|
+
- server: ESF
|
1123
|
+
- cross-origin-opener-policy: <redacted>
|
1124
|
+
- x-frame-options: SAMEORIGIN
|
1125
|
+
- content-type: text/css; charset=utf-8
|
1126
|
+
- access-control-allow-origin: *
|
1127
|
+
- cache-control: private, max-age=86400, stale-while-revalidate=604800
|
1128
|
+
- cross-origin-resource-policy: <redacted>
|
1129
|
+
- timing-allow-origin: *
|
1130
|
+
- link: <https://fonts.gstatic.com>; rel=preconnect; crossorigin
|
1131
|
+
- x-xss-protection: 0
|
1132
|
+
- expires: Thu, 07 Mar 2024 21:17:02 GMT
|
1133
|
+
=== end content
|
1134
|
+
|
1135
|
+
Title: PerformanceTraceFormatter formatNetworkRequests defaults to verbose mode when 1 request and verbose option is not defined
|
1136
|
+
Content:
|
1137
|
+
## Network request: https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800
|
1138
|
+
eventKey: s-1046
|
1139
|
+
Timings:
|
1140
|
+
- Queued at: 38 ms
|
1141
|
+
- Request sent at: 42 ms
|
1142
|
+
- Download complete at: 48 ms
|
1143
|
+
- Main thread processing completed at: 52 ms
|
1144
|
+
Durations:
|
1145
|
+
- Download time: 5 ms
|
1146
|
+
- Main thread processing time: 4 ms
|
1147
|
+
- Total duration: 14 ms
|
1148
|
+
Initiator: https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
|
1149
|
+
Redirects: no redirects
|
1150
|
+
Status code: 200
|
1151
|
+
MIME Type: text/css
|
1152
|
+
Protocol: unknown
|
1153
|
+
Priority: VeryHigh
|
1154
|
+
Render blocking: Yes
|
1155
|
+
From a service worker: No
|
1156
|
+
Initiators (root request to the request that directly loaded this one): https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
|
1157
|
+
Response headers
|
1158
|
+
- date: Thu, 07 Mar 2024 21:17:02 GMT
|
1159
|
+
- content-encoding: gzip
|
1160
|
+
- x-content-type-options: nosniff
|
1161
|
+
- last-modified: Thu, 07 Mar 2024 21:17:02 GMT
|
1162
|
+
- server: ESF
|
1163
|
+
- cross-origin-opener-policy: <redacted>
|
1164
|
+
- x-frame-options: SAMEORIGIN
|
1165
|
+
- content-type: text/css; charset=utf-8
|
1166
|
+
- access-control-allow-origin: *
|
1167
|
+
- cache-control: private, max-age=86400, stale-while-revalidate=604800
|
1168
|
+
- cross-origin-resource-policy: <redacted>
|
1169
|
+
- timing-allow-origin: *
|
1170
|
+
- link: <https://fonts.gstatic.com>; rel=preconnect; crossorigin
|
1171
|
+
- x-xss-protection: 0
|
1172
|
+
- expires: Thu, 07 Mar 2024 21:17:02 GMT
|
1173
|
+
=== end content
|
1174
|
+
|
1175
|
+
Title: PerformanceTraceFormatter formatNetworkRequests formats in compressed mode if a request is duplicated in the array
|
1176
|
+
Content:
|
1177
|
+
Network requests data:
|
1178
|
+
|
1179
|
+
|
1180
|
+
|
1181
|
+
allUrls = [0: http://localhost:3000/redirect3, 1: http://localhost:3000/, 2: http://localhost:3000/redirect1, 3: http://localhost:3000/redirect2]
|
1182
|
+
|
1183
|
+
0;s-9843;3 ms;1,529 ms;3,533 ms;3,538 ms;3,535 ms;0.1 ms;5 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;http/1.1;f;;[[1|3 ms|512 ms],[2|515 ms|506 ms],[3|1,021 ms|507 ms]];[Transfer-Encoding: chunked|Keep-Alive: <redacted>|Date: Tue, 11 Mar 2025 10:19:12 GMT|Content-Type: text/html|Connection: keep-alive]
|
1184
|
+
0;s-9843;3 ms;1,529 ms;3,533 ms;3,538 ms;3,535 ms;0.1 ms;5 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;http/1.1;f;;[[1|3 ms|512 ms],[2|515 ms|506 ms],[3|1,021 ms|507 ms]];[Transfer-Encoding: chunked|Keep-Alive: <redacted>|Date: Tue, 11 Mar 2025 10:19:12 GMT|Content-Type: text/html|Connection: keep-alive]
|
1185
|
+
=== end content
|
1186
|
+
|
1187
|
+
Title: PerformanceTraceFormatter formatNetworkRequests correctly formats an initiator chain for network-requests-initiators trace
|
1188
|
+
Content:
|
1189
|
+
Network requests data:
|
1190
|
+
|
1191
|
+
|
1192
|
+
|
1193
|
+
allUrls = [0: https://www.youtube.com/, 1: https://i.ytimg.com/generate_204, 2: https://www.youtube.com/s/desktop/28bb7000/jsbin/desktop_polymer.vflset/desktop_polymer.js, 3: https://www.youtube.com/s/desktop/28bb7000/jsbin/web-animations-next-lite.min.vflset/web-animations-next-lite.min.js, 4: https://www.youtube.com/s/desktop/28bb7000/jsbin/custom-elements-es5-adapter.vflset/custom-elements-es5-adapter.js, 5: https://www.youtube.com/s/desktop/28bb7000/jsbin/webcomponents-sd.vflset/webcomponents-sd.js, 6: https://www.youtube.com/s/desktop/28bb7000/jsbin/intersection-observer.min.vflset/intersection-observer.min.js, 7: https://www.youtube.com/s/desktop/28bb7000/jsbin/scheduler.vflset/scheduler.js, 8: https://www.youtube.com/s/desktop/28bb7000/jsbin/www-i18n-constants-en_US.vflset/www-i18n-constants.js, 9: https://www.youtube.com/s/desktop/28bb7000/jsbin/www-tampering.vflset/www-tampering.js, 10: https://www.youtube.com/s/desktop/28bb7000/jsbin/spf.vflset/spf.js, 11: https://www.youtube.com/s/desktop/28bb7000/jsbin/network.vflset/network.js, 12: https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=YouTube+Sans:wght@300..900&display=swap, 13: https://www.youtube.com/s/desktop/28bb7000/cssbin/www-main-desktop-home-page-skeleton.css, 14: https://www.youtube.com/s/desktop/28bb7000/cssbin/www-onepick.css, 15: https://www.youtube.com/s/_/ytmainappweb/_/ss/k=ytmainappweb.kevlar_base.YzCM3q0siy4.L.B1.O/am=ADA7AQ/d=0/br=1/rs=AGKMywG7cU8b38Gfv3WYn4_os7hoqR-TIw, 16: https://googleads.g.doubleclick.net/pagead/id?slf_rd=1, 17: https://googleads.g.doubleclick.net/pagead/id, 18: https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2, 19: https://www.youtube.com/s/search/audio/failure.mp3, 20: https://www.youtube.com/s/search/audio/no_input.mp3, 21: https://www.youtube.com/s/search/audio/open.mp3, 22: https://www.youtube.com/s/search/audio/success.mp3, 23: https://www.youtube.com/s/desktop/28bb7000/cssbin/www-main-desktop-watch-page-skeleton.css, 24: https://www.youtube.com/youtubei/v1/att/get?prettyPrint=false, 25: https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2, 26: https://fonts.gstatic.com/s/youtubesans/v30/Qw38ZQNGEDjaO2m6tqIqX5E-AVS5_rSejo46_PCTRspJ0OosolrBEJL3HO_T7fE.woff2, 27: https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBBc4.woff2, 28: https://www.youtube.com/youtubei/v1/feedback?prettyPrint=false, 29: https://www.google.com/js/th/EirmVnnNlSgqRyHN1YLvHhRw11SWUqUPb76JYHphonQ.js, 30: https://www.youtube.com/manifest.webmanifest, 31: https://www.youtube.com/s/desktop/28bb7000/img/favicon.ico, 32: https://www.gstatic.com/youtube/img/branding/favicon/favicon_144x144.png, 33: https://www.youtube.com/s/player/5b22937f/player_ias.vflset/en_US/base.js, 34: https://www.youtube.com/s/player/5b22937f/www-player.css]
|
1194
|
+
|
1195
|
+
0;s-3266;2 ms;11 ms;267 ms;281 ms;278 ms;189 ms;13 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;h2;t;;[];[date: Mon, 01 Jul 2024 08:58:55 GMT|content-encoding: br|x-content-type-options: nosniff|strict-transport-security: max-age=31536000|p3p: <redacted>|x-xss-protection: 0|pragma: no-cache|accept-ch: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|cross-origin-opener-policy: <redacted>|server: ESF|vary: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|report-to: {"group":"youtube_main","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube_main"}]}|content-type: text/html; charset=utf-8|x-frame-options: SAMEORIGIN|cache-control: no-cache, no-store, max-age=0, must-revalidate|origin-trial: <redacted>|permissions-policy: ch-ua-arch=*, ch-ua-bitness=*, ch-ua-full-version=*, ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-wow64=*, ch-ua-form-factors=*, ch-ua-platform=*, ch-ua-platform-version=*|expires: Mon, 01 Jan 1990 00:00:00 GMT]
|
1196
|
+
1;s-3390;87 ms;146 ms;148 ms;149 ms;62 ms;1 ms;0.7 ms;204;text/plain;High;High;High;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:55 GMT|content-length: <redacted>|cross-origin-resource-policy: <redacted>]
|
1197
|
+
2;s-3444;87 ms;89 ms;170 ms;203 ms;115 ms;78 ms;33 ms;200;text/javascript;High;High;High;f;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1198
|
+
3;s-3468;88 ms;89 ms;99 ms;102 ms;15 ms;7 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1199
|
+
4;s-3474;88 ms;102 ms;104 ms;107 ms;19 ms;0.5 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1200
|
+
5;s-3499;88 ms;108 ms;110 ms;113 ms;25 ms;0.9 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1201
|
+
6;s-3510;88 ms;113 ms;115 ms;122 ms;34 ms;0.6 ms;7 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1202
|
+
7;s-6390;134 ms;134 ms;137 ms;140 ms;7 ms;0.9 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1203
|
+
8;s-6412;135 ms;140 ms;149 ms;151 ms;17 ms;4 ms;2 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 06:56:36 GMT|content-encoding: br|x-content-type-options: nosniff|age: 179740|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 06:56:36 GMT]
|
1204
|
+
9;s-6415;135 ms;141 ms;149 ms;153 ms;18 ms;3 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1205
|
+
10;s-6428;135 ms;141 ms;150 ms;154 ms;19 ms;3 ms;4 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 04:36:47 GMT|content-encoding: br|x-content-type-options: nosniff|age: 188129|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 04:36:47 GMT]
|
1206
|
+
11;s-6441;135 ms;141 ms;151 ms;168 ms;33 ms;3 ms;17 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 04:36:47 GMT|content-encoding: br|x-content-type-options: nosniff|age: 188129|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 04:36:47 GMT]
|
1207
|
+
12;s-6454;136 ms;140 ms;143 ms;145 ms;10 ms;2 ms;2 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;f;0;[];[date: Mon, 01 Jul 2024 08:52:16 GMT|content-encoding: gzip|x-content-type-options: nosniff|last-modified: Mon, 01 Jul 2024 07:19:04 GMT|server: ESF|cross-origin-opener-policy: <redacted>|x-frame-options: SAMEORIGIN|content-type: text/css; charset=utf-8|access-control-allow-origin: *|cache-control: private, max-age=86400, stale-while-revalidate=604800|cross-origin-resource-policy: <redacted>|timing-allow-origin: *|link: <https://fonts.gstatic.com>; rel=preconnect; crossorigin|x-xss-protection: 0|expires: Mon, 01 Jul 2024 08:52:16 GMT]
|
1208
|
+
13;s-6469;136 ms;140 ms;146 ms;146 ms;10 ms;4 ms;0.1 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[date: Sat, 29 Jun 2024 07:14:39 GMT|content-encoding: br|x-content-type-options: nosniff|age: 178657|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 07:14:39 GMT]
|
1209
|
+
14;s-6475;136 ms;140 ms;149 ms;149 ms;13 ms;6 ms;0.6 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[date: Sat, 29 Jun 2024 07:00:38 GMT|content-encoding: br|x-content-type-options: nosniff|age: 179498|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 07:00:38 GMT]
|
1210
|
+
15;s-6485;136 ms;140 ms;156 ms;167 ms;31 ms;11 ms;11 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[content-security-policy: require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/youtube-main-app-web-scs-key|content-encoding: br|x-content-type-options: nosniff|date: Sat, 29 Jun 2024 03:09:37 GMT|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 03:14:18 GMT|server: sffe|cross-origin-opener-policy: <redacted>|vary: Accept-Encoding|report-to: {"group":"youtube-main-app-web-scs-key","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-main-app-web-scs-key"}]}|content-type: text/css; charset=UTF-8|cache-control: public, max-age=31536000|accept-ranges: bytes|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1211
|
+
16;s-16846;663 ms;964 ms;969 ms;983 ms;321 ms;2 ms;14 ms;200;application/json;High;High;High;f;h3;f;0;[[17|663 ms|300 ms]];[date: Mon, 01 Jul 2024 08:58:56 GMT|content-encoding: gzip|x-content-type-options: nosniff|p3p: <redacted>|cross-origin-resource-policy: <redacted>|content-disposition: attachment; filename="f.txt"|alt-svc: h3=":443"; ma=2592000|content-length: <redacted>|x-xss-protection: 0|pragma: no-cache|server: cafe|content-type: application/json; charset=UTF-8|access-control-allow-origin: https://www.youtube.com|cache-control: no-cache, no-store, must-revalidate|access-control-allow-credentials: true|timing-allow-origin: *|expires: Fri, 01 Jan 1990 00:00:00 GMT]
|
1212
|
+
18;s-14490;795 ms;798 ms;800 ms;938 ms;142 ms;2 ms;138 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:22:06 GMT|x-content-type-options: nosniff|age: 269647|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 11 May 2022 19:24:48 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:22:06 GMT]
|
1213
|
+
19;s-16732;961 ms;965 ms;975 ms;984 ms;24 ms;6 ms;9 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6528/6529|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
|
1214
|
+
20;s-16762;961 ms;965 ms;975 ms;987 ms;25 ms;2 ms;11 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6952/6953|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
|
1215
|
+
21;s-16801;962 ms;966 ms;976 ms;985 ms;23 ms;4 ms;9 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6166/6167|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
|
1216
|
+
22;s-16824;962 ms;966 ms;976 ms;986 ms;24 ms;3 ms;10 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6635/6636|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
|
1217
|
+
23;s-17290;970 ms;971 ms;975 ms;981 ms;10 ms;3 ms;5 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[date: Sat, 29 Jun 2024 07:00:38 GMT|content-encoding: br|x-content-type-options: nosniff|age: 179498|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 07:00:38 GMT]
|
1218
|
+
24;s-19795;1,068 ms;1,070 ms;1,095 ms;1,257 ms;189 ms;2 ms;162 ms;200;application/json;High;High;High;f;h2;f;0,2;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|content-encoding: br|x-content-type-options: nosniff|server: scaffolding on HTTPServer2|x-frame-options: SAMEORIGIN|vary: Origin, X-Origin, Referer|content-type: application/json; charset=UTF-8|content-length: <redacted>|x-xss-protection: 0]
|
1219
|
+
25;s-20882;1,132 ms;1,134 ms;1,136 ms;1,185 ms;53 ms;2 ms;49 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:38:26 GMT|x-content-type-options: nosniff|age: 268667|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 11 May 2022 19:24:42 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:38:26 GMT]
|
1220
|
+
26;s-20937;1,173 ms;1,174 ms;1,176 ms;1,186 ms;13 ms;2 ms;9 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:49:35 GMT|x-content-type-options: nosniff|age: 267998|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Tue, 16 Apr 2024 20:00:48 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:49:35 GMT]
|
1221
|
+
27;s-21739;1,221 ms;1,223 ms;1,225 ms;1,231 ms;10 ms;2 ms;6 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:16:48 GMT|x-content-type-options: nosniff|age: 269965|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 11 May 2022 19:24:45 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:16:48 GMT]
|
1222
|
+
28;s-21776;1,230 ms;1,232 ms;1,274 ms;1,433 ms;203 ms;1 ms;159 ms;200;application/json;High;High;High;f;h2;f;0,2;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|content-encoding: br|x-content-type-options: nosniff|server: scaffolding on HTTPServer2|x-frame-options: SAMEORIGIN|vary: Origin, X-Origin, Referer|content-type: application/json; charset=UTF-8|content-length: <redacted>|x-xss-protection: 0]
|
1223
|
+
29;s-22498;1,260 ms;1,261 ms;1,266 ms;1,269 ms;9 ms;2 ms;3 ms;200;text/javascript;Low;Low;Low;f;h3;f;0,2;[];[date: Sun, 23 Jun 2024 15:10:07 GMT|content-encoding: br|x-content-type-options: nosniff|age: 83158|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000|content-length: <redacted>|x-xss-protection: 0|last-modified: Mon, 03 Jun 2024 09:30:00 GMT|server: sffe|cross-origin-opener-policy: <redacted>|vary: Accept-Encoding|report-to: {"group":"botguard-scs","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/botguard-scs"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|expires: Mon, 23 Jun 2025 15:10:07 GMT]
|
1224
|
+
30;s-22520;1,260 ms;1,262 ms;1,265 ms;1,266 ms;6 ms;3 ms;1 ms;200;application/manifest+json;Medium;Medium;Medium;f;h2;f;;[];[date: Mon, 01 Jul 2024 08:52:17 GMT|x-content-type-options: nosniff|accept-ch: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|cross-origin-opener-policy: <redacted>|server: ESF|x-frame-options: SAMEORIGIN|vary: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|content-type: application/manifest+json; charset=utf-8|report-to: {"group":"youtube_main","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube_main"}]}|cache-control: public, max-age=86400|origin-trial: <redacted>|permissions-policy: ch-ua-arch=*, ch-ua-bitness=*, ch-ua-full-version=*, ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-wow64=*, ch-ua-form-factors=*, ch-ua-platform=*, ch-ua-platform-version=*|x-xss-protection: 0|expires: Tue, 02 Jul 2024 08:52:17 GMT]
|
1225
|
+
31;s-22564;1,261 ms;1,261 ms;1,266 ms;1,269 ms;8 ms;1 ms;3 ms;200;image/x-icon;High;High;High;f;h2;t;;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193360|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: image/x-icon|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
|
1226
|
+
32;s-22945;1,269 ms;1,271 ms;1,274 ms;1,376 ms;106 ms;3 ms;101 ms;200;image/png;High;High;High;f;h2;f;;[];[date: Fri, 21 Jun 2024 11:32:23 GMT|x-content-type-options: nosniff|last-modified: Thu, 03 Oct 2019 10:15:00 GMT|server: sffe|age: 269031|report-to: {"group":"static-on-bigtable","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/static-on-bigtable"}]}|content-type: image/png|cache-control: public, max-age=31536000|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|content-length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Sat, 21 Jun 2025 11:32:23 GMT]
|
1227
|
+
33;s-25001;1,372 ms;1,373 ms;1,433 ms;1,448 ms;76 ms;58 ms;15 ms;200;text/javascript;Low;Low;Low;f;h2;t;0,2;[];[date: Sat, 29 Jun 2024 02:54:09 GMT|content-encoding: gzip|x-content-type-options: nosniff|age: 194288|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 26 Jun 2024 04:16:28 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 02:54:09 GMT]
|
1228
|
+
34;s-25010;1,373 ms;1,373 ms;1,381 ms;1,420 ms;47 ms;4 ms;39 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;f;h2;t;0,2;[];[date: Sat, 29 Jun 2024 02:54:09 GMT|content-encoding: br|x-content-type-options: nosniff|age: 194288|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 26 Jun 2024 04:16:28 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 02:54:09 GMT]
|
1229
|
+
=== end content
|