@nuxt/scripts 1.0.0-beta.24 → 1.0.0-beta.26

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.
Files changed (80) hide show
  1. package/dist/client/200.html +1 -1
  2. package/dist/client/404.html +1 -1
  3. package/dist/client/_nuxt/{Bh9fd9qr.js → C-7nRtzO.js} +1 -1
  4. package/dist/client/_nuxt/{UTi7FhVv.js → D5k4eN9O.js} +1 -1
  5. package/dist/client/_nuxt/DjhmCJlE.js +162 -0
  6. package/dist/client/_nuxt/{B7aPLMNo.js → TJ5JFHov.js} +1 -1
  7. package/dist/client/_nuxt/builds/latest.json +1 -1
  8. package/dist/client/_nuxt/builds/meta/33e1ac0e-aba1-4856-8beb-775c426be236.json +1 -0
  9. package/dist/client/_nuxt/entry.C5SUNdim.css +1 -0
  10. package/dist/client/_nuxt/error-404.C_3_IG5y.css +1 -0
  11. package/dist/client/_nuxt/error-500.DSv6YikH.css +1 -0
  12. package/dist/client/index.html +1 -1
  13. package/dist/module.d.mts +6 -20
  14. package/dist/module.d.ts +6 -20
  15. package/dist/module.json +1 -1
  16. package/dist/module.mjs +303 -277
  17. package/dist/registry.mjs +121 -71
  18. package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.d.vue.ts +2 -5
  19. package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue +14 -15
  20. package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue.d.ts +2 -5
  21. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.d.vue.ts +1 -4
  22. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue +30 -37
  23. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue.d.ts +1 -4
  24. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsCircle.vue +19 -28
  25. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsHeatmapLayer.vue +18 -22
  26. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.vue +30 -37
  27. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.d.vue.ts +1 -4
  28. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue +31 -36
  29. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue.d.ts +1 -4
  30. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarkerClusterer.vue +17 -22
  31. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPinElement.vue +19 -28
  32. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolygon.vue +19 -28
  33. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolyline.vue +19 -28
  34. package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsRectangle.vue +19 -28
  35. package/dist/runtime/components/GoogleMaps/injectionKeys.d.ts +11 -0
  36. package/dist/runtime/components/GoogleMaps/injectionKeys.js +3 -0
  37. package/dist/runtime/components/GoogleMaps/useGoogleMapsResource.d.ts +26 -0
  38. package/dist/runtime/components/GoogleMaps/useGoogleMapsResource.js +37 -0
  39. package/dist/runtime/composables/useScriptTriggerConsent.d.ts +10 -0
  40. package/dist/runtime/composables/useScriptTriggerConsent.js +32 -19
  41. package/dist/runtime/registry/bing-uet.d.ts +20 -0
  42. package/dist/runtime/registry/bing-uet.js +29 -0
  43. package/dist/runtime/registry/bluesky-embed.d.ts +1 -1
  44. package/dist/runtime/registry/crisp.d.ts +1 -1
  45. package/dist/runtime/registry/fathom-analytics.d.ts +1 -1
  46. package/dist/runtime/registry/google-adsense.d.ts +1 -1
  47. package/dist/runtime/registry/hotjar.d.ts +1 -1
  48. package/dist/runtime/registry/instagram-embed.d.ts +1 -1
  49. package/dist/runtime/registry/intercom.d.ts +1 -1
  50. package/dist/runtime/registry/matomo-analytics.d.ts +1 -1
  51. package/dist/runtime/registry/meta-pixel.d.ts +1 -1
  52. package/dist/runtime/registry/mixpanel-analytics.d.ts +22 -0
  53. package/dist/runtime/registry/mixpanel-analytics.js +46 -0
  54. package/dist/runtime/registry/npm.d.ts +1 -1
  55. package/dist/runtime/registry/reddit-pixel.d.ts +1 -1
  56. package/dist/runtime/registry/schemas.d.ts +19 -0
  57. package/dist/runtime/registry/schemas.js +19 -0
  58. package/dist/runtime/registry/snapchat-pixel.d.ts +1 -1
  59. package/dist/runtime/registry/tiktok-pixel.d.ts +1 -1
  60. package/dist/runtime/registry/vercel-analytics.d.ts +1 -1
  61. package/dist/runtime/registry/x-embed.d.ts +1 -1
  62. package/dist/runtime/registry/x-pixel.d.ts +1 -1
  63. package/dist/runtime/server/proxy-handler.js +36 -23
  64. package/dist/runtime/server/utils/privacy.d.ts +1 -1
  65. package/dist/runtime/server/utils/privacy.js +3 -3
  66. package/dist/runtime/types.d.ts +30 -18
  67. package/dist/runtime/utils/pure.d.ts +1 -1
  68. package/dist/runtime/utils.js +1 -1
  69. package/dist/shared/scripts.ViOoYQXH.mjs +381 -0
  70. package/dist/stats.d.mts +95 -3
  71. package/dist/stats.d.ts +95 -3
  72. package/dist/stats.mjs +2845 -169
  73. package/dist/types-source.mjs +47 -0
  74. package/package.json +13 -13
  75. package/dist/client/_nuxt/BNNMZFwZ.js +0 -162
  76. package/dist/client/_nuxt/builds/meta/78647cef-f45a-4560-82b4-b9364815198a.json +0 -1
  77. package/dist/client/_nuxt/entry.CACgbLJl.css +0 -1
  78. package/dist/client/_nuxt/error-404.DMdWw4vT.css +0 -1
  79. package/dist/client/_nuxt/error-500.CROTF27X.css +0 -1
  80. package/dist/shared/scripts.Crpn87WB.mjs +0 -318
package/dist/stats.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { g as getAllProxyConfigs } from './shared/scripts.Crpn87WB.mjs';
1
+ import { g as getAllProxyConfigs } from './shared/scripts.ViOoYQXH.mjs';
2
2
 
3
3
  const scriptMeta = {
4
4
  // Analytics
@@ -10,7 +10,7 @@ const scriptMeta = {
10
10
  urls: ["https://static.cloudflareinsights.com/beacon.min.js"],
11
11
  trackedData: ["page-views"]
12
12
  },
13
- postHog: {
13
+ posthog: {
14
14
  urls: [],
15
15
  // NPM-only, no CDN script
16
16
  trackedData: ["page-views", "events", "conversions", "user-identity", "session-replay", "heatmaps", "ab-testing"]
@@ -31,44 +31,56 @@ const scriptMeta = {
31
31
  urls: ["https://cdn.databuddy.cc/databuddy.js"],
32
32
  trackedData: ["page-views", "events"]
33
33
  },
34
+ mixpanelAnalytics: {
35
+ urls: ["https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js"],
36
+ trackedData: ["page-views", "events", "conversions", "user-identity"]
37
+ },
34
38
  segment: {
35
39
  urls: ["https://cdn.segment.com/analytics.js/v1/KBXOGxgqMFjm2mxtJDJg0iDn5AnGYb9C/analytics.min.js"],
36
40
  trackedData: ["page-views", "events", "conversions", "user-identity"]
37
41
  },
38
42
  googleAnalytics: {
39
43
  urls: ["https://www.googletagmanager.com/gtag/js?id=G-TR58L0EF8P"],
40
- trackedData: ["page-views", "events", "conversions", "user-identity", "audiences"],
41
- canvasFingerprinting: true
44
+ trackedData: ["page-views", "events", "conversions", "user-identity", "audiences"]
42
45
  },
43
46
  umamiAnalytics: {
44
47
  urls: ["https://cloud.umami.is/script.js"],
45
48
  trackedData: ["page-views", "events"]
46
49
  },
50
+ vercelAnalytics: {
51
+ urls: ["https://va.vercel-scripts.com/v1/script.js"],
52
+ trackedData: ["page-views", "events"]
53
+ },
47
54
  // Ads / Pixels
55
+ bingUet: {
56
+ urls: ["https://bat.bing.com/bat.js"],
57
+ trackedData: ["page-views", "conversions", "retargeting", "audiences"],
58
+ testId: "247021147"
59
+ },
48
60
  metaPixel: {
49
61
  urls: ["https://connect.facebook.net/en_US/fbevents.js"],
50
62
  trackedData: ["page-views", "conversions", "retargeting", "audiences"],
51
- canvasFingerprinting: true
63
+ testId: "3925006"
52
64
  },
53
65
  xPixel: {
54
66
  urls: ["https://static.ads-twitter.com/uwt.js"],
55
67
  trackedData: ["page-views", "conversions", "retargeting", "audiences"],
56
- canvasFingerprinting: true
68
+ testId: "ol7lz"
57
69
  },
58
- tikTokPixel: {
70
+ tiktokPixel: {
59
71
  urls: ["https://analytics.tiktok.com/i18n/pixel/events.js"],
60
72
  trackedData: ["page-views", "conversions", "retargeting", "audiences"],
61
- canvasFingerprinting: true
73
+ testId: "C5ABC1234F5678"
62
74
  },
63
75
  snapchatPixel: {
64
76
  urls: ["https://sc-static.net/scevent.min.js"],
65
77
  trackedData: ["page-views", "conversions", "retargeting", "audiences"],
66
- canvasFingerprinting: true
78
+ testId: "2295cbcc-cb3f-4727-8c09-1133b742722c"
67
79
  },
68
80
  redditPixel: {
69
81
  urls: ["https://www.redditstatic.com/ads/pixel.js"],
70
82
  trackedData: ["page-views", "conversions", "retargeting", "audiences"],
71
- canvasFingerprinting: true
83
+ testId: "a2_ilz4u0kbdr3v"
72
84
  },
73
85
  googleAdsense: {
74
86
  urls: ["https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"],
@@ -82,12 +94,12 @@ const scriptMeta = {
82
94
  hotjar: {
83
95
  urls: ["https://static.hotjar.com/c/hotjar-3925006.js?sv=6"],
84
96
  trackedData: ["page-views", "session-replay", "heatmaps", "clicks", "scrolls", "form-submissions"],
85
- canvasFingerprinting: true
97
+ testId: 3925006
86
98
  },
87
99
  clarity: {
88
100
  urls: ["https://www.clarity.ms/tag/mqk2m9dr2v"],
89
101
  trackedData: ["page-views", "session-replay", "heatmaps", "clicks", "scrolls"],
90
- canvasFingerprinting: true
102
+ testId: "mqk2m9dr2v"
91
103
  },
92
104
  // Tag Manager
93
105
  googleTagManager: {
@@ -97,11 +109,13 @@ const scriptMeta = {
97
109
  // Support
98
110
  intercom: {
99
111
  urls: ["https://widget.intercom.io/widget/akg5rmxb"],
100
- trackedData: ["user-identity", "events"]
112
+ trackedData: ["user-identity", "events"],
113
+ testId: "akg5rmxb"
101
114
  },
102
115
  crisp: {
103
116
  urls: ["https://client.crisp.chat/l.js"],
104
- trackedData: ["user-identity", "events"]
117
+ trackedData: ["user-identity", "events"],
118
+ testId: "b1021910-7ace-425a-9ef5-07f49e5ce417"
105
119
  },
106
120
  // Payments
107
121
  stripe: {
@@ -112,7 +126,7 @@ const scriptMeta = {
112
126
  urls: ["https://assets.lemonsqueezy.com/lemon.js"],
113
127
  trackedData: ["transactions"]
114
128
  },
115
- payPal: {
129
+ paypal: {
116
130
  urls: ["https://www.paypal.com/web-sdk/v6/core"],
117
131
  trackedData: ["transactions"]
118
132
  },
@@ -121,7 +135,7 @@ const scriptMeta = {
121
135
  urls: ["https://player.vimeo.com/api/player.js"],
122
136
  trackedData: ["video-engagement"]
123
137
  },
124
- youTubePlayer: {
138
+ youtubePlayer: {
125
139
  urls: ["https://www.youtube.com/iframe_api"],
126
140
  trackedData: ["video-engagement"]
127
141
  },
@@ -145,6 +159,24 @@ const scriptMeta = {
145
159
  googleSignIn: {
146
160
  urls: ["https://accounts.google.com/gsi/client"],
147
161
  trackedData: ["user-identity"]
162
+ },
163
+ // Embeds
164
+ blueskyEmbed: {
165
+ urls: [],
166
+ trackedData: []
167
+ },
168
+ instagramEmbed: {
169
+ urls: ["https://www.instagram.com/embed.js"],
170
+ trackedData: []
171
+ },
172
+ xEmbed: {
173
+ urls: ["https://platform.twitter.com/widgets.js"],
174
+ trackedData: []
175
+ },
176
+ // Identity
177
+ gravatar: {
178
+ urls: [],
179
+ trackedData: []
148
180
  }
149
181
  };
150
182
 
@@ -152,6 +184,61 @@ const plausibleAnalytics = {
152
184
  totalTransferKb: 1.9,
153
185
  totalDecodedKb: 2.9,
154
186
  loadTimeMs: 79,
187
+ collectsWebVitals: false,
188
+ apis: {
189
+ cookies: false,
190
+ localStorage: true,
191
+ sessionStorage: false,
192
+ indexedDB: false,
193
+ canvas: false,
194
+ webgl: false,
195
+ audioContext: false,
196
+ userAgent: false,
197
+ doNotTrack: false,
198
+ hardwareConcurrency: false,
199
+ deviceMemory: false,
200
+ plugins: false,
201
+ languages: false,
202
+ screen: false,
203
+ timezone: false,
204
+ platform: false,
205
+ vendor: false,
206
+ connection: false,
207
+ maxTouchPoints: false,
208
+ devicePixelRatio: false,
209
+ mediaDevices: false,
210
+ getBattery: false,
211
+ referrer: true,
212
+ windowName: false,
213
+ rtcPeerConnection: false,
214
+ geolocation: false,
215
+ serviceWorker: false,
216
+ cacheApi: false,
217
+ sendBeacon: false,
218
+ fetch: true,
219
+ xhr: false,
220
+ websocket: false,
221
+ mutationObserver: false,
222
+ performanceObserver: false,
223
+ intersectionObserver: false
224
+ },
225
+ cookies: [
226
+ ],
227
+ network: {
228
+ requestCount: 1,
229
+ domains: [
230
+ "plausible.io"
231
+ ],
232
+ outboundBytes: 0,
233
+ inboundBytes: 1954,
234
+ injectedElements: [
235
+ ]
236
+ },
237
+ performance: {
238
+ taskDurationMs: 25,
239
+ scriptDurationMs: 3,
240
+ heapDeltaKb: 735
241
+ },
155
242
  scripts: [
156
243
  {
157
244
  url: "https://plausible.io/js/script.js",
@@ -165,48 +252,212 @@ const plausibleAnalytics = {
165
252
  ]
166
253
  };
167
254
  const cloudflareWebAnalytics = {
168
- totalTransferKb: 10.8,
255
+ totalTransferKb: 10.7,
169
256
  totalDecodedKb: 30.4,
170
- loadTimeMs: 100,
257
+ loadTimeMs: 83,
258
+ collectsWebVitals: true,
259
+ apis: {
260
+ cookies: false,
261
+ localStorage: false,
262
+ sessionStorage: false,
263
+ indexedDB: false,
264
+ canvas: false,
265
+ webgl: false,
266
+ audioContext: false,
267
+ userAgent: true,
268
+ doNotTrack: false,
269
+ hardwareConcurrency: false,
270
+ deviceMemory: false,
271
+ plugins: false,
272
+ languages: false,
273
+ screen: false,
274
+ timezone: false,
275
+ platform: false,
276
+ vendor: false,
277
+ connection: false,
278
+ maxTouchPoints: false,
279
+ devicePixelRatio: false,
280
+ mediaDevices: false,
281
+ getBattery: false,
282
+ referrer: true,
283
+ windowName: false,
284
+ rtcPeerConnection: false,
285
+ geolocation: false,
286
+ serviceWorker: false,
287
+ cacheApi: false,
288
+ sendBeacon: true,
289
+ fetch: false,
290
+ xhr: true,
291
+ websocket: false,
292
+ mutationObserver: false,
293
+ performanceObserver: true,
294
+ intersectionObserver: false
295
+ },
296
+ cookies: [
297
+ ],
298
+ network: {
299
+ requestCount: 1,
300
+ domains: [
301
+ "static.cloudflareinsights.com"
302
+ ],
303
+ outboundBytes: 0,
304
+ inboundBytes: 10993,
305
+ injectedElements: [
306
+ ]
307
+ },
308
+ performance: {
309
+ taskDurationMs: 7,
310
+ scriptDurationMs: 1,
311
+ heapDeltaKb: 773
312
+ },
171
313
  scripts: [
172
314
  {
173
315
  url: "https://static.cloudflareinsights.com/beacon.min.js",
174
- transferKb: 10.8,
316
+ transferKb: 10.7,
175
317
  decodedKb: 30.4,
176
318
  encoding: "gzip",
177
- durationMs: 100,
319
+ durationMs: 83,
178
320
  initiatorType: "script",
179
321
  protocol: "unknown"
180
322
  }
181
323
  ]
182
324
  };
183
- const postHog = {
325
+ const posthog = {
184
326
  totalTransferKb: 0,
185
327
  totalDecodedKb: 0,
186
328
  loadTimeMs: 0,
329
+ collectsWebVitals: false,
330
+ apis: {
331
+ cookies: false,
332
+ localStorage: false,
333
+ sessionStorage: false,
334
+ indexedDB: false,
335
+ canvas: false,
336
+ webgl: false,
337
+ audioContext: false,
338
+ userAgent: false,
339
+ doNotTrack: false,
340
+ hardwareConcurrency: false,
341
+ deviceMemory: false,
342
+ plugins: false,
343
+ languages: false,
344
+ screen: false,
345
+ timezone: false,
346
+ platform: false,
347
+ vendor: false,
348
+ connection: false,
349
+ maxTouchPoints: false,
350
+ devicePixelRatio: false,
351
+ mediaDevices: false,
352
+ getBattery: false,
353
+ referrer: false,
354
+ windowName: false,
355
+ rtcPeerConnection: false,
356
+ geolocation: false,
357
+ serviceWorker: false,
358
+ cacheApi: false,
359
+ sendBeacon: false,
360
+ fetch: false,
361
+ xhr: false,
362
+ websocket: false,
363
+ mutationObserver: false,
364
+ performanceObserver: false,
365
+ intersectionObserver: false
366
+ },
367
+ cookies: [
368
+ ],
369
+ network: {
370
+ requestCount: 0,
371
+ domains: [
372
+ ],
373
+ outboundBytes: 0,
374
+ inboundBytes: 0,
375
+ injectedElements: [
376
+ ]
377
+ },
378
+ performance: {
379
+ taskDurationMs: 0,
380
+ scriptDurationMs: 0,
381
+ heapDeltaKb: 0
382
+ },
187
383
  scripts: [
188
384
  ]
189
385
  };
190
386
  const fathomAnalytics = {
191
387
  totalTransferKb: 3,
192
388
  totalDecodedKb: 6.7,
193
- loadTimeMs: 340,
389
+ loadTimeMs: 303,
390
+ collectsWebVitals: false,
391
+ apis: {
392
+ cookies: false,
393
+ localStorage: true,
394
+ sessionStorage: false,
395
+ indexedDB: false,
396
+ canvas: false,
397
+ webgl: false,
398
+ audioContext: false,
399
+ userAgent: false,
400
+ doNotTrack: true,
401
+ hardwareConcurrency: false,
402
+ deviceMemory: false,
403
+ plugins: false,
404
+ languages: false,
405
+ screen: false,
406
+ timezone: false,
407
+ platform: false,
408
+ vendor: false,
409
+ connection: false,
410
+ maxTouchPoints: false,
411
+ devicePixelRatio: false,
412
+ mediaDevices: false,
413
+ getBattery: false,
414
+ referrer: true,
415
+ windowName: false,
416
+ rtcPeerConnection: false,
417
+ geolocation: false,
418
+ serviceWorker: false,
419
+ cacheApi: false,
420
+ sendBeacon: true,
421
+ fetch: false,
422
+ xhr: false,
423
+ websocket: false,
424
+ mutationObserver: false,
425
+ performanceObserver: false,
426
+ intersectionObserver: false
427
+ },
428
+ cookies: [
429
+ ],
430
+ network: {
431
+ requestCount: 2,
432
+ domains: [
433
+ "cdn.usefathom.com"
434
+ ],
435
+ outboundBytes: 0,
436
+ inboundBytes: 3078,
437
+ injectedElements: [
438
+ ]
439
+ },
440
+ performance: {
441
+ taskDurationMs: 16,
442
+ scriptDurationMs: 2,
443
+ heapDeltaKb: 758
444
+ },
194
445
  scripts: [
195
446
  {
196
447
  url: "https://cdn.usefathom.com/script.js",
197
448
  transferKb: 2.7,
198
449
  decodedKb: 6.7,
199
450
  encoding: "zstd",
200
- durationMs: 340,
451
+ durationMs: 74,
201
452
  initiatorType: "script",
202
453
  protocol: "unknown"
203
454
  },
204
455
  {
205
- url: "https://cdn.usefathom.com/?h=http%3A%2F%2F127.0.0.1&p=%2FfathomAnalytics&r=&sid=null&qs=%7B%7D&cid=22238330",
456
+ url: "https://cdn.usefathom.com/?h=http%3A%2F%2F127.0.0.1&p=%2FfathomAnalytics&r=&sid=null&qs=%7B%7D&cid=75417793",
206
457
  transferKb: 0.3,
207
458
  decodedKb: 0,
208
459
  encoding: "none",
209
- durationMs: 304,
460
+ durationMs: 303,
210
461
  initiatorType: "img",
211
462
  protocol: "unknown"
212
463
  }
@@ -215,14 +466,69 @@ const fathomAnalytics = {
215
466
  const matomoAnalytics = {
216
467
  totalTransferKb: 60.4,
217
468
  totalDecodedKb: 218.6,
218
- loadTimeMs: 101,
469
+ loadTimeMs: 1681,
470
+ collectsWebVitals: false,
471
+ apis: {
472
+ cookies: true,
473
+ localStorage: true,
474
+ sessionStorage: false,
475
+ indexedDB: false,
476
+ canvas: false,
477
+ webgl: false,
478
+ audioContext: false,
479
+ userAgent: true,
480
+ doNotTrack: true,
481
+ hardwareConcurrency: false,
482
+ deviceMemory: false,
483
+ plugins: false,
484
+ languages: false,
485
+ screen: true,
486
+ timezone: true,
487
+ platform: true,
488
+ vendor: true,
489
+ connection: false,
490
+ maxTouchPoints: false,
491
+ devicePixelRatio: false,
492
+ mediaDevices: false,
493
+ getBattery: false,
494
+ referrer: true,
495
+ windowName: true,
496
+ rtcPeerConnection: false,
497
+ geolocation: false,
498
+ serviceWorker: true,
499
+ cacheApi: false,
500
+ sendBeacon: true,
501
+ fetch: true,
502
+ xhr: true,
503
+ websocket: false,
504
+ mutationObserver: true,
505
+ performanceObserver: false,
506
+ intersectionObserver: false
507
+ },
508
+ cookies: [
509
+ ],
510
+ network: {
511
+ requestCount: 1,
512
+ domains: [
513
+ "cdn.matomo.cloud"
514
+ ],
515
+ outboundBytes: 0,
516
+ inboundBytes: 61860,
517
+ injectedElements: [
518
+ ]
519
+ },
520
+ performance: {
521
+ taskDurationMs: 24,
522
+ scriptDurationMs: 9,
523
+ heapDeltaKb: 1388
524
+ },
219
525
  scripts: [
220
526
  {
221
527
  url: "https://cdn.matomo.cloud/demo.matomo.cloud/matomo.js",
222
528
  transferKb: 60.4,
223
529
  decodedKb: 218.6,
224
530
  encoding: "br",
225
- durationMs: 101,
531
+ durationMs: 1681,
226
532
  initiatorType: "script",
227
533
  protocol: "unknown"
228
534
  }
@@ -230,15 +536,70 @@ const matomoAnalytics = {
230
536
  };
231
537
  const rybbitAnalytics = {
232
538
  totalTransferKb: 9,
233
- totalDecodedKb: 25.3,
234
- loadTimeMs: 1127,
539
+ totalDecodedKb: 25.4,
540
+ loadTimeMs: 1119,
541
+ collectsWebVitals: true,
542
+ apis: {
543
+ cookies: false,
544
+ localStorage: true,
545
+ sessionStorage: true,
546
+ indexedDB: false,
547
+ canvas: false,
548
+ webgl: false,
549
+ audioContext: false,
550
+ userAgent: false,
551
+ doNotTrack: false,
552
+ hardwareConcurrency: false,
553
+ deviceMemory: false,
554
+ plugins: false,
555
+ languages: true,
556
+ screen: true,
557
+ timezone: false,
558
+ platform: false,
559
+ vendor: false,
560
+ connection: false,
561
+ maxTouchPoints: false,
562
+ devicePixelRatio: false,
563
+ mediaDevices: false,
564
+ getBattery: false,
565
+ referrer: true,
566
+ windowName: false,
567
+ rtcPeerConnection: false,
568
+ geolocation: false,
569
+ serviceWorker: false,
570
+ cacheApi: false,
571
+ sendBeacon: false,
572
+ fetch: true,
573
+ xhr: false,
574
+ websocket: false,
575
+ mutationObserver: false,
576
+ performanceObserver: true,
577
+ intersectionObserver: false
578
+ },
579
+ cookies: [
580
+ ],
581
+ network: {
582
+ requestCount: 1,
583
+ domains: [
584
+ "app.rybbit.io"
585
+ ],
586
+ outboundBytes: 0,
587
+ inboundBytes: 9198,
588
+ injectedElements: [
589
+ ]
590
+ },
591
+ performance: {
592
+ taskDurationMs: 8,
593
+ scriptDurationMs: 1,
594
+ heapDeltaKb: 744
595
+ },
235
596
  scripts: [
236
597
  {
237
598
  url: "https://app.rybbit.io/api/script.js",
238
599
  transferKb: 9,
239
- decodedKb: 25.3,
600
+ decodedKb: 25.4,
240
601
  encoding: "zstd",
241
- durationMs: 1127,
602
+ durationMs: 1119,
242
603
  initiatorType: "script",
243
604
  protocol: "unknown"
244
605
  }
@@ -247,30 +608,212 @@ const rybbitAnalytics = {
247
608
  const databuddyAnalytics = {
248
609
  totalTransferKb: 10.6,
249
610
  totalDecodedKb: 29.2,
250
- loadTimeMs: 83,
611
+ loadTimeMs: 82,
612
+ collectsWebVitals: true,
613
+ apis: {
614
+ cookies: false,
615
+ localStorage: true,
616
+ sessionStorage: true,
617
+ indexedDB: false,
618
+ canvas: false,
619
+ webgl: false,
620
+ audioContext: false,
621
+ userAgent: true,
622
+ doNotTrack: false,
623
+ hardwareConcurrency: false,
624
+ deviceMemory: false,
625
+ plugins: false,
626
+ languages: true,
627
+ screen: false,
628
+ timezone: true,
629
+ platform: false,
630
+ vendor: false,
631
+ connection: false,
632
+ maxTouchPoints: false,
633
+ devicePixelRatio: false,
634
+ mediaDevices: false,
635
+ getBattery: false,
636
+ referrer: true,
637
+ windowName: false,
638
+ rtcPeerConnection: false,
639
+ geolocation: false,
640
+ serviceWorker: false,
641
+ cacheApi: false,
642
+ sendBeacon: true,
643
+ fetch: true,
644
+ xhr: false,
645
+ websocket: false,
646
+ mutationObserver: false,
647
+ performanceObserver: true,
648
+ intersectionObserver: false
649
+ },
650
+ cookies: [
651
+ ],
652
+ network: {
653
+ requestCount: 1,
654
+ domains: [
655
+ "cdn.databuddy.cc"
656
+ ],
657
+ outboundBytes: 0,
658
+ inboundBytes: 10865,
659
+ injectedElements: [
660
+ ]
661
+ },
662
+ performance: {
663
+ taskDurationMs: 12,
664
+ scriptDurationMs: 5,
665
+ heapDeltaKb: 792
666
+ },
251
667
  scripts: [
252
668
  {
253
669
  url: "https://cdn.databuddy.cc/databuddy.js",
254
670
  transferKb: 10.6,
255
671
  decodedKb: 29.2,
256
672
  encoding: "zstd",
257
- durationMs: 83,
673
+ durationMs: 82,
674
+ initiatorType: "script",
675
+ protocol: "unknown"
676
+ }
677
+ ]
678
+ };
679
+ const mixpanelAnalytics = {
680
+ totalTransferKb: 31,
681
+ totalDecodedKb: 93.9,
682
+ loadTimeMs: 96,
683
+ collectsWebVitals: false,
684
+ apis: {
685
+ cookies: true,
686
+ localStorage: true,
687
+ sessionStorage: true,
688
+ indexedDB: true,
689
+ canvas: false,
690
+ webgl: false,
691
+ audioContext: false,
692
+ userAgent: true,
693
+ doNotTrack: true,
694
+ hardwareConcurrency: false,
695
+ deviceMemory: false,
696
+ plugins: false,
697
+ languages: false,
698
+ screen: false,
699
+ timezone: false,
700
+ platform: false,
701
+ vendor: false,
702
+ connection: false,
703
+ maxTouchPoints: false,
704
+ devicePixelRatio: false,
705
+ mediaDevices: false,
706
+ getBattery: false,
707
+ referrer: true,
708
+ windowName: false,
709
+ rtcPeerConnection: false,
710
+ geolocation: false,
711
+ serviceWorker: false,
712
+ cacheApi: false,
713
+ sendBeacon: true,
714
+ fetch: true,
715
+ xhr: true,
716
+ websocket: false,
717
+ mutationObserver: true,
718
+ performanceObserver: false,
719
+ intersectionObserver: false
720
+ },
721
+ cookies: [
722
+ ],
723
+ network: {
724
+ requestCount: 1,
725
+ domains: [
726
+ "cdn.mxpnl.com"
727
+ ],
728
+ outboundBytes: 0,
729
+ inboundBytes: 31794,
730
+ injectedElements: [
731
+ ]
732
+ },
733
+ performance: {
734
+ taskDurationMs: 19,
735
+ scriptDurationMs: 11,
736
+ heapDeltaKb: 1156
737
+ },
738
+ scripts: [
739
+ {
740
+ url: "https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js",
741
+ transferKb: 31,
742
+ decodedKb: 93.9,
743
+ encoding: "gzip",
744
+ durationMs: 96,
258
745
  initiatorType: "script",
259
746
  protocol: "unknown"
260
747
  }
261
748
  ]
262
749
  };
263
750
  const segment = {
264
- totalTransferKb: 29.4,
751
+ totalTransferKb: 29.6,
265
752
  totalDecodedKb: 107,
266
- loadTimeMs: 597,
753
+ loadTimeMs: 983,
754
+ collectsWebVitals: false,
755
+ apis: {
756
+ cookies: true,
757
+ localStorage: true,
758
+ sessionStorage: false,
759
+ indexedDB: false,
760
+ canvas: false,
761
+ webgl: false,
762
+ audioContext: false,
763
+ userAgent: true,
764
+ doNotTrack: false,
765
+ hardwareConcurrency: false,
766
+ deviceMemory: false,
767
+ plugins: false,
768
+ languages: true,
769
+ screen: false,
770
+ timezone: true,
771
+ platform: false,
772
+ vendor: false,
773
+ connection: false,
774
+ maxTouchPoints: false,
775
+ devicePixelRatio: false,
776
+ mediaDevices: false,
777
+ getBattery: false,
778
+ referrer: true,
779
+ windowName: false,
780
+ rtcPeerConnection: false,
781
+ geolocation: false,
782
+ serviceWorker: false,
783
+ cacheApi: false,
784
+ sendBeacon: false,
785
+ fetch: true,
786
+ xhr: true,
787
+ websocket: false,
788
+ mutationObserver: false,
789
+ performanceObserver: false,
790
+ intersectionObserver: false
791
+ },
792
+ cookies: [
793
+ ],
794
+ network: {
795
+ requestCount: 3,
796
+ domains: [
797
+ "api.segment.io",
798
+ "cdn.segment.com"
799
+ ],
800
+ outboundBytes: 1006,
801
+ inboundBytes: 30260,
802
+ injectedElements: [
803
+ ]
804
+ },
805
+ performance: {
806
+ taskDurationMs: 28,
807
+ scriptDurationMs: 8,
808
+ heapDeltaKb: 1317
809
+ },
267
810
  scripts: [
268
811
  {
269
812
  url: "https://cdn.segment.com/analytics.js/v1/KBXOGxgqMFjm2mxtJDJg0iDn5AnGYb9C/analytics.min.js",
270
813
  transferKb: 28.2,
271
814
  decodedKb: 106.4,
272
815
  encoding: "br",
273
- durationMs: 597,
816
+ durationMs: 983,
274
817
  initiatorType: "script",
275
818
  protocol: "unknown"
276
819
  },
@@ -279,23 +822,87 @@ const segment = {
279
822
  transferKb: 1.2,
280
823
  decodedKb: 0.6,
281
824
  encoding: "none",
282
- durationMs: 83,
825
+ durationMs: 51,
826
+ initiatorType: "fetch",
827
+ protocol: "unknown"
828
+ },
829
+ {
830
+ url: "https://api.segment.io/v1/p",
831
+ transferKb: 0.2,
832
+ decodedKb: 0,
833
+ encoding: "none",
834
+ durationMs: 768,
283
835
  initiatorType: "fetch",
284
836
  protocol: "unknown"
285
837
  }
286
838
  ]
287
839
  };
288
840
  const googleAnalytics = {
289
- totalTransferKb: 151.5,
290
- totalDecodedKb: 446,
291
- loadTimeMs: 537,
841
+ totalTransferKb: 154.2,
842
+ totalDecodedKb: 454.1,
843
+ loadTimeMs: 514,
844
+ collectsWebVitals: false,
845
+ apis: {
846
+ cookies: true,
847
+ localStorage: true,
848
+ sessionStorage: false,
849
+ indexedDB: false,
850
+ canvas: false,
851
+ webgl: false,
852
+ audioContext: false,
853
+ userAgent: true,
854
+ doNotTrack: false,
855
+ hardwareConcurrency: false,
856
+ deviceMemory: false,
857
+ plugins: false,
858
+ languages: false,
859
+ screen: false,
860
+ timezone: true,
861
+ platform: false,
862
+ vendor: false,
863
+ connection: false,
864
+ maxTouchPoints: false,
865
+ devicePixelRatio: false,
866
+ mediaDevices: false,
867
+ getBattery: false,
868
+ referrer: true,
869
+ windowName: true,
870
+ rtcPeerConnection: false,
871
+ geolocation: false,
872
+ serviceWorker: true,
873
+ cacheApi: false,
874
+ sendBeacon: true,
875
+ fetch: true,
876
+ xhr: true,
877
+ websocket: false,
878
+ mutationObserver: true,
879
+ performanceObserver: false,
880
+ intersectionObserver: true
881
+ },
882
+ cookies: [
883
+ ],
884
+ network: {
885
+ requestCount: 1,
886
+ domains: [
887
+ "www.googletagmanager.com"
888
+ ],
889
+ outboundBytes: 0,
890
+ inboundBytes: 157885,
891
+ injectedElements: [
892
+ ]
893
+ },
894
+ performance: {
895
+ taskDurationMs: 34,
896
+ scriptDurationMs: 22,
897
+ heapDeltaKb: 2592
898
+ },
292
899
  scripts: [
293
900
  {
294
901
  url: "https://www.googletagmanager.com/gtag/js?id=G-TR58L0EF8P",
295
- transferKb: 151.5,
296
- decodedKb: 446,
902
+ transferKb: 154.2,
903
+ decodedKb: 454.1,
297
904
  encoding: "zstd",
298
- durationMs: 537,
905
+ durationMs: 514,
299
906
  initiatorType: "script",
300
907
  protocol: "unknown"
301
908
  }
@@ -304,174 +911,1240 @@ const googleAnalytics = {
304
911
  const umamiAnalytics = {
305
912
  totalTransferKb: 2.4,
306
913
  totalDecodedKb: 2.6,
307
- loadTimeMs: 99,
914
+ loadTimeMs: 96,
915
+ collectsWebVitals: false,
916
+ apis: {
917
+ cookies: false,
918
+ localStorage: true,
919
+ sessionStorage: false,
920
+ indexedDB: false,
921
+ canvas: false,
922
+ webgl: false,
923
+ audioContext: false,
924
+ userAgent: false,
925
+ doNotTrack: true,
926
+ hardwareConcurrency: false,
927
+ deviceMemory: false,
928
+ plugins: false,
929
+ languages: false,
930
+ screen: true,
931
+ timezone: false,
932
+ platform: false,
933
+ vendor: false,
934
+ connection: false,
935
+ maxTouchPoints: false,
936
+ devicePixelRatio: false,
937
+ mediaDevices: false,
938
+ getBattery: false,
939
+ referrer: true,
940
+ windowName: false,
941
+ rtcPeerConnection: false,
942
+ geolocation: false,
943
+ serviceWorker: false,
944
+ cacheApi: false,
945
+ sendBeacon: false,
946
+ fetch: true,
947
+ xhr: false,
948
+ websocket: false,
949
+ mutationObserver: false,
950
+ performanceObserver: false,
951
+ intersectionObserver: false
952
+ },
953
+ cookies: [
954
+ ],
955
+ network: {
956
+ requestCount: 1,
957
+ domains: [
958
+ "cloud.umami.is"
959
+ ],
960
+ outboundBytes: 0,
961
+ inboundBytes: 2467,
962
+ injectedElements: [
963
+ ]
964
+ },
965
+ performance: {
966
+ taskDurationMs: 5,
967
+ scriptDurationMs: 0,
968
+ heapDeltaKb: 714
969
+ },
308
970
  scripts: [
309
971
  {
310
972
  url: "https://cloud.umami.is/script.js",
311
973
  transferKb: 2.4,
312
974
  decodedKb: 2.6,
313
975
  encoding: "br",
314
- durationMs: 99,
976
+ durationMs: 96,
315
977
  initiatorType: "script",
316
978
  protocol: "unknown"
317
979
  }
318
980
  ]
319
981
  };
982
+ const vercelAnalytics = {
983
+ totalTransferKb: 1.6,
984
+ totalDecodedKb: 2.4,
985
+ loadTimeMs: 72,
986
+ collectsWebVitals: false,
987
+ apis: {
988
+ cookies: false,
989
+ localStorage: false,
990
+ sessionStorage: false,
991
+ indexedDB: false,
992
+ canvas: false,
993
+ webgl: false,
994
+ audioContext: false,
995
+ userAgent: true,
996
+ doNotTrack: false,
997
+ hardwareConcurrency: false,
998
+ deviceMemory: false,
999
+ plugins: false,
1000
+ languages: false,
1001
+ screen: false,
1002
+ timezone: false,
1003
+ platform: false,
1004
+ vendor: false,
1005
+ connection: false,
1006
+ maxTouchPoints: false,
1007
+ devicePixelRatio: false,
1008
+ mediaDevices: false,
1009
+ getBattery: false,
1010
+ referrer: false,
1011
+ windowName: false,
1012
+ rtcPeerConnection: false,
1013
+ geolocation: false,
1014
+ serviceWorker: false,
1015
+ cacheApi: false,
1016
+ sendBeacon: false,
1017
+ fetch: true,
1018
+ xhr: false,
1019
+ websocket: false,
1020
+ mutationObserver: false,
1021
+ performanceObserver: false,
1022
+ intersectionObserver: false
1023
+ },
1024
+ cookies: [
1025
+ ],
1026
+ network: {
1027
+ requestCount: 1,
1028
+ domains: [
1029
+ "va.vercel-scripts.com"
1030
+ ],
1031
+ outboundBytes: 0,
1032
+ inboundBytes: 1608,
1033
+ injectedElements: [
1034
+ ]
1035
+ },
1036
+ performance: {
1037
+ taskDurationMs: 6,
1038
+ scriptDurationMs: 0,
1039
+ heapDeltaKb: 705
1040
+ },
1041
+ scripts: [
1042
+ {
1043
+ url: "https://va.vercel-scripts.com/v1/script.js",
1044
+ transferKb: 1.6,
1045
+ decodedKb: 2.4,
1046
+ encoding: "br",
1047
+ durationMs: 72,
1048
+ initiatorType: "script",
1049
+ protocol: "unknown"
1050
+ }
1051
+ ]
1052
+ };
1053
+ const bingUet = {
1054
+ totalTransferKb: 16.2,
1055
+ totalDecodedKb: 54,
1056
+ loadTimeMs: 219,
1057
+ collectsWebVitals: false,
1058
+ apis: {
1059
+ cookies: true,
1060
+ localStorage: true,
1061
+ sessionStorage: false,
1062
+ indexedDB: false,
1063
+ canvas: false,
1064
+ webgl: false,
1065
+ audioContext: false,
1066
+ userAgent: true,
1067
+ doNotTrack: false,
1068
+ hardwareConcurrency: false,
1069
+ deviceMemory: false,
1070
+ plugins: true,
1071
+ languages: true,
1072
+ screen: true,
1073
+ timezone: true,
1074
+ platform: false,
1075
+ vendor: false,
1076
+ connection: false,
1077
+ maxTouchPoints: true,
1078
+ devicePixelRatio: false,
1079
+ mediaDevices: false,
1080
+ getBattery: false,
1081
+ referrer: true,
1082
+ windowName: false,
1083
+ rtcPeerConnection: false,
1084
+ geolocation: false,
1085
+ serviceWorker: false,
1086
+ cacheApi: false,
1087
+ sendBeacon: true,
1088
+ fetch: false,
1089
+ xhr: true,
1090
+ websocket: false,
1091
+ mutationObserver: false,
1092
+ performanceObserver: false,
1093
+ intersectionObserver: false
1094
+ },
1095
+ cookies: [
1096
+ {
1097
+ name: "MUID",
1098
+ domain: ".bing.com",
1099
+ path: "/",
1100
+ httpOnly: false,
1101
+ secure: true,
1102
+ sameSite: "None",
1103
+ session: false,
1104
+ lifetimeDays: 390,
1105
+ firstParty: false
1106
+ },
1107
+ {
1108
+ name: "MR",
1109
+ domain: ".bat.bing.com",
1110
+ path: "/",
1111
+ httpOnly: false,
1112
+ secure: true,
1113
+ sameSite: "None",
1114
+ session: false,
1115
+ lifetimeDays: 7,
1116
+ firstParty: false
1117
+ }
1118
+ ],
1119
+ network: {
1120
+ requestCount: 3,
1121
+ domains: [
1122
+ "bat.bing.com"
1123
+ ],
1124
+ outboundBytes: 0,
1125
+ inboundBytes: 16549,
1126
+ injectedElements: [
1127
+ {
1128
+ tag: "script",
1129
+ src: "https://bat.bing.com/p/action/247021147.js"
1130
+ },
1131
+ {
1132
+ tag: "img",
1133
+ src: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=e096214e-367e-4815-8b73-5a51fdde33fd&bo=1&sid=cb88fce0234c11f1afa32398b1ed69e7&vid=cb891a90234c11f1a773dd7e75ca9603&vids=1&msclkid=N&pi=0&lg=en-GB&sw=1280&sh=720&sc=24&nwd=1&p=http%3A%2F%2F127.0.0.1%3A34081%2FbingUet&r=&lt=225&evt=pageLoad&sv=2&cdb=AQAQ&rn=579954"
1134
+ }
1135
+ ]
1136
+ },
1137
+ performance: {
1138
+ taskDurationMs: 24,
1139
+ scriptDurationMs: 17,
1140
+ heapDeltaKb: 918
1141
+ },
1142
+ scripts: [
1143
+ {
1144
+ url: "https://bat.bing.com/bat.js",
1145
+ transferKb: 15.4,
1146
+ decodedKb: 53.6,
1147
+ encoding: "gzip",
1148
+ durationMs: 219,
1149
+ initiatorType: "script",
1150
+ protocol: "unknown"
1151
+ },
1152
+ {
1153
+ url: "https://bat.bing.com/p/action/247021147.js",
1154
+ transferKb: 0.4,
1155
+ decodedKb: 0.4,
1156
+ encoding: "br",
1157
+ durationMs: 157,
1158
+ initiatorType: "script",
1159
+ protocol: "unknown"
1160
+ },
1161
+ {
1162
+ url: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=e096214e-367e-4815-8b73-5a51fdde33fd&bo=1&sid=cb88fce0234c11f1afa32398b1ed69e7&vid=cb891a90234c11f1a773dd7e75ca9603&vids=1&msclkid=N&pi=0&lg=en-GB&sw=1280&sh=720&sc=24&nwd=1&p=http%3A%2F%2F127.0.0.1%3A34081%2FbingUet&r=&lt=225&evt=pageLoad&sv=2&cdb=AQAQ&rn=579954",
1163
+ transferKb: 0.4,
1164
+ decodedKb: 0,
1165
+ encoding: "none",
1166
+ durationMs: 157,
1167
+ initiatorType: "img",
1168
+ protocol: "unknown"
1169
+ }
1170
+ ]
1171
+ };
320
1172
  const metaPixel = {
321
- totalTransferKb: 93.9,
322
- totalDecodedKb: 353.3,
323
- loadTimeMs: 123,
1173
+ totalTransferKb: 97.1,
1174
+ totalDecodedKb: 364.7,
1175
+ loadTimeMs: 231,
1176
+ collectsWebVitals: false,
1177
+ apis: {
1178
+ cookies: true,
1179
+ localStorage: true,
1180
+ sessionStorage: true,
1181
+ indexedDB: false,
1182
+ canvas: false,
1183
+ webgl: false,
1184
+ audioContext: false,
1185
+ userAgent: true,
1186
+ doNotTrack: false,
1187
+ hardwareConcurrency: false,
1188
+ deviceMemory: false,
1189
+ plugins: false,
1190
+ languages: false,
1191
+ screen: true,
1192
+ timezone: false,
1193
+ platform: false,
1194
+ vendor: true,
1195
+ connection: false,
1196
+ maxTouchPoints: false,
1197
+ devicePixelRatio: false,
1198
+ mediaDevices: false,
1199
+ getBattery: false,
1200
+ referrer: true,
1201
+ windowName: false,
1202
+ rtcPeerConnection: false,
1203
+ geolocation: false,
1204
+ serviceWorker: false,
1205
+ cacheApi: false,
1206
+ sendBeacon: true,
1207
+ fetch: true,
1208
+ xhr: false,
1209
+ websocket: false,
1210
+ mutationObserver: false,
1211
+ performanceObserver: false,
1212
+ intersectionObserver: false
1213
+ },
1214
+ cookies: [
1215
+ ],
1216
+ network: {
1217
+ requestCount: 3,
1218
+ domains: [
1219
+ "connect.facebook.net",
1220
+ "www.facebook.com"
1221
+ ],
1222
+ outboundBytes: 0,
1223
+ inboundBytes: 102426,
1224
+ injectedElements: [
1225
+ {
1226
+ tag: "script",
1227
+ src: "https://connect.facebook.net/signals/config/3925006?v=2.9.280&r=stable&domain=127.0.0.1&hme=b758cff5989f970d61536a685dcccfaabd7a9508da12548b3811a55c83b2e4ae&ex_m=101%2C194%2C143%2C22%2C69%2C70%2C136%2C65%2C64%2C11%2C151%2C87%2C16%2C130%2C123%2C72%2C75%2C129%2C148%2C153%2C8%2C4%2C5%2C7%2C6%2C3%2C88%2C98%2C154%2C159%2C208%2C59%2C175%2C176%2C52%2C264%2C30%2C71%2C220%2C219%2C218%2C23%2C32%2C100%2C58%2C10%2C60%2C94%2C95%2C96%2C102%2C126%2C31%2C29%2C128%2C125%2C124%2C144%2C73%2C147%2C145%2C146%2C47%2C57%2C119%2C15%2C150%2C42%2C251%2C252%2C250%2C26%2C27%2C28%2C45%2C137%2C74%2C109%2C18%2C20%2C41%2C37%2C39%2C38%2C80%2C89%2C93%2C107%2C135%2C138%2C43%2C108%2C24%2C21%2C115%2C66%2C35%2C140%2C139%2C141%2C132%2C131%2C25%2C34%2C56%2C106%2C149%2C67%2C17%2C142%2C111%2C78%2C63%2C19%2C82%2C83%2C112%2C81%2C33%2C280%2C201%2C190%2C191%2C189%2C283%2C275%2C49%2C202%2C104%2C127%2C77%2C117%2C51%2C44%2C46%2C110%2C116%2C122%2C55%2C61%2C50%2C53%2C97%2C152%2C1%2C120%2C14%2C118%2C12%2C2%2C54%2C90%2C62%2C114%2C86%2C85%2C155%2C156%2C91%2C92%2C9%2C121%2C99%2C48%2C133%2C84%2C76%2C68%2C113%2C103%2C40%2C134%2C0%2C79%2C36%2C105%2C13%2C157"
1228
+ }
1229
+ ]
1230
+ },
1231
+ performance: {
1232
+ taskDurationMs: 36,
1233
+ scriptDurationMs: 23,
1234
+ heapDeltaKb: 1956
1235
+ },
324
1236
  scripts: [
325
1237
  {
326
1238
  url: "https://connect.facebook.net/en_US/fbevents.js",
327
- transferKb: 93.9,
328
- decodedKb: 353.3,
1239
+ transferKb: 94.7,
1240
+ decodedKb: 356.5,
329
1241
  encoding: "gzip",
330
- durationMs: 123,
1242
+ durationMs: 114,
331
1243
  initiatorType: "script",
332
1244
  protocol: "h2"
1245
+ },
1246
+ {
1247
+ url: "https://connect.facebook.net/signals/config/3925006?v=2.9.280&r=stable&domain=127.0.0.1&hme=b758cff5989f970d61536a685dcccfaabd7a9508da12548b3811a55c83b2e4ae&ex_m=101%2C194%2C143%2C22%2C69%2C70%2C136%2C65%2C64%2C11%2C151%2C87%2C16%2C130%2C123%2C72%2C75%2C129%2C148%2C153%2C8%2C4%2C5%2C7%2C6%2C3%2C88%2C98%2C154%2C159%2C208%2C59%2C175%2C176%2C52%2C264%2C30%2C71%2C220%2C219%2C218%2C23%2C32%2C100%2C58%2C10%2C60%2C94%2C95%2C96%2C102%2C126%2C31%2C29%2C128%2C125%2C124%2C144%2C73%2C147%2C145%2C146%2C47%2C57%2C119%2C15%2C150%2C42%2C251%2C252%2C250%2C26%2C27%2C28%2C45%2C137%2C74%2C109%2C18%2C20%2C41%2C37%2C39%2C38%2C80%2C89%2C93%2C107%2C135%2C138%2C43%2C108%2C24%2C21%2C115%2C66%2C35%2C140%2C139%2C141%2C132%2C131%2C25%2C34%2C56%2C106%2C149%2C67%2C17%2C142%2C111%2C78%2C63%2C19%2C82%2C83%2C112%2C81%2C33%2C280%2C201%2C190%2C191%2C189%2C283%2C275%2C49%2C202%2C104%2C127%2C77%2C117%2C51%2C44%2C46%2C110%2C116%2C122%2C55%2C61%2C50%2C53%2C97%2C152%2C1%2C120%2C14%2C118%2C12%2C2%2C54%2C90%2C62%2C114%2C86%2C85%2C155%2C156%2C91%2C92%2C9%2C121%2C99%2C48%2C133%2C84%2C76%2C68%2C113%2C103%2C40%2C134%2C0%2C79%2C36%2C105%2C13%2C157",
1248
+ transferKb: 2.1,
1249
+ decodedKb: 8.2,
1250
+ encoding: "gzip",
1251
+ durationMs: 231,
1252
+ initiatorType: "script",
1253
+ protocol: "h2"
1254
+ },
1255
+ {
1256
+ url: "https://www.facebook.com/tr/?id=3925006&ev=PageView&dl=http%3A%2F%2F127.0.0.1%3A34081%2FmetaPixel&rl=&if=false&ts=1773894818200&sw=1280&sh=720&v=2.9.280&r=stable&ec=0&o=156&it=1773894817965&coo=false&expv2[0]=pl0&expv2[1]=el2&expv2[2]=bc1&expv2[3]=ra0&expv2[4]=rp0&expv2[5]=im0&expv2[6]=hf0&rqm=GET",
1257
+ transferKb: 0.3,
1258
+ decodedKb: 0,
1259
+ encoding: "none",
1260
+ durationMs: 77,
1261
+ initiatorType: "img",
1262
+ protocol: "unknown"
333
1263
  }
334
1264
  ]
335
1265
  };
336
1266
  const xPixel = {
337
- totalTransferKb: 9.5,
338
- totalDecodedKb: 32.3,
339
- loadTimeMs: 72,
1267
+ totalTransferKb: 15.1,
1268
+ totalDecodedKb: 47.1,
1269
+ loadTimeMs: 247,
1270
+ collectsWebVitals: false,
1271
+ apis: {
1272
+ cookies: true,
1273
+ localStorage: false,
1274
+ sessionStorage: false,
1275
+ indexedDB: false,
1276
+ canvas: false,
1277
+ webgl: false,
1278
+ audioContext: false,
1279
+ userAgent: true,
1280
+ doNotTrack: true,
1281
+ hardwareConcurrency: true,
1282
+ deviceMemory: false,
1283
+ plugins: false,
1284
+ languages: true,
1285
+ screen: true,
1286
+ timezone: true,
1287
+ platform: true,
1288
+ vendor: true,
1289
+ connection: false,
1290
+ maxTouchPoints: true,
1291
+ devicePixelRatio: false,
1292
+ mediaDevices: false,
1293
+ getBattery: true,
1294
+ referrer: true,
1295
+ windowName: false,
1296
+ rtcPeerConnection: false,
1297
+ geolocation: false,
1298
+ serviceWorker: false,
1299
+ cacheApi: false,
1300
+ sendBeacon: true,
1301
+ fetch: false,
1302
+ xhr: true,
1303
+ websocket: false,
1304
+ mutationObserver: false,
1305
+ performanceObserver: false,
1306
+ intersectionObserver: false
1307
+ },
1308
+ cookies: [
1309
+ {
1310
+ name: "guest_id_marketing",
1311
+ domain: ".twitter.com",
1312
+ path: "/",
1313
+ httpOnly: false,
1314
+ secure: true,
1315
+ sameSite: "None",
1316
+ session: false,
1317
+ lifetimeDays: 400,
1318
+ firstParty: false
1319
+ },
1320
+ {
1321
+ name: "guest_id_ads",
1322
+ domain: ".twitter.com",
1323
+ path: "/",
1324
+ httpOnly: false,
1325
+ secure: true,
1326
+ sameSite: "None",
1327
+ session: false,
1328
+ lifetimeDays: 400,
1329
+ firstParty: false
1330
+ },
1331
+ {
1332
+ name: "personalization_id",
1333
+ domain: ".twitter.com",
1334
+ path: "/",
1335
+ httpOnly: false,
1336
+ secure: true,
1337
+ sameSite: "None",
1338
+ session: false,
1339
+ lifetimeDays: 400,
1340
+ firstParty: false
1341
+ },
1342
+ {
1343
+ name: "guest_id",
1344
+ domain: ".twitter.com",
1345
+ path: "/",
1346
+ httpOnly: false,
1347
+ secure: true,
1348
+ sameSite: "None",
1349
+ session: false,
1350
+ lifetimeDays: 400,
1351
+ firstParty: false
1352
+ },
1353
+ {
1354
+ name: "muc_ads",
1355
+ domain: ".t.co",
1356
+ path: "/",
1357
+ httpOnly: false,
1358
+ secure: true,
1359
+ sameSite: "None",
1360
+ session: false,
1361
+ lifetimeDays: 400,
1362
+ firstParty: false
1363
+ }
1364
+ ],
1365
+ network: {
1366
+ requestCount: 3,
1367
+ domains: [
1368
+ "analytics.twitter.com",
1369
+ "static.ads-twitter.com",
1370
+ "t.co"
1371
+ ],
1372
+ outboundBytes: 0,
1373
+ inboundBytes: 15458,
1374
+ injectedElements: [
1375
+ {
1376
+ tag: "img",
1377
+ src: "https://t.co/1/i/adsct?bci=4&dv=Australia%2FMelbourne%26en-GB%26Google%20Inc.%26Linux%20x86_64%26255%261280%26720%2624%2624%261280%26720%260%26na&eci=3&event=%7B%7D&event_id=962d1f00-6ba8-417c-a0f5-4c153dacac89&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=c9421eba-6065-470c-930a-30afd3165f1c&tw_document_href=http%3A%2F%2F127.0.0.1%3A34081%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773894819586.917996565140010674&txn_id=ol7lz&type=javascript&version=2.3.50"
1378
+ },
1379
+ {
1380
+ tag: "img",
1381
+ src: "https://analytics.twitter.com/1/i/adsct?bci=4&dv=Australia%2FMelbourne%26en-GB%26Google%20Inc.%26Linux%20x86_64%26255%261280%26720%2624%2624%261280%26720%260%26na&eci=3&event=%7B%7D&event_id=962d1f00-6ba8-417c-a0f5-4c153dacac89&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=c9421eba-6065-470c-930a-30afd3165f1c&tw_document_href=http%3A%2F%2F127.0.0.1%3A34081%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773894819586.917996565140010674&txn_id=ol7lz&type=javascript&version=2.3.50"
1382
+ }
1383
+ ]
1384
+ },
1385
+ performance: {
1386
+ taskDurationMs: 23,
1387
+ scriptDurationMs: 5,
1388
+ heapDeltaKb: 1030
1389
+ },
340
1390
  scripts: [
341
1391
  {
342
1392
  url: "https://static.ads-twitter.com/uwt.js",
343
- transferKb: 9.5,
344
- decodedKb: 32.3,
1393
+ transferKb: 13.5,
1394
+ decodedKb: 47.1,
345
1395
  encoding: "gzip",
346
1396
  durationMs: 72,
347
1397
  initiatorType: "script",
348
1398
  protocol: "unknown"
1399
+ },
1400
+ {
1401
+ url: "https://t.co/1/i/adsct?bci=4&dv=Australia%2FMelbourne%26en-GB%26Google%20Inc.%26Linux%20x86_64%26255%261280%26720%2624%2624%261280%26720%260%26na&eci=3&event=%7B%7D&event_id=962d1f00-6ba8-417c-a0f5-4c153dacac89&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=c9421eba-6065-470c-930a-30afd3165f1c&tw_document_href=http%3A%2F%2F127.0.0.1%3A34081%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773894819586.917996565140010674&txn_id=ol7lz&type=javascript&version=2.3.50",
1402
+ transferKb: 0.6,
1403
+ decodedKb: 0,
1404
+ encoding: "none",
1405
+ durationMs: 247,
1406
+ initiatorType: "img",
1407
+ protocol: "unknown"
1408
+ },
1409
+ {
1410
+ url: "https://analytics.twitter.com/1/i/adsct?bci=4&dv=Australia%2FMelbourne%26en-GB%26Google%20Inc.%26Linux%20x86_64%26255%261280%26720%2624%2624%261280%26720%260%26na&eci=3&event=%7B%7D&event_id=962d1f00-6ba8-417c-a0f5-4c153dacac89&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=c9421eba-6065-470c-930a-30afd3165f1c&tw_document_href=http%3A%2F%2F127.0.0.1%3A34081%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773894819586.917996565140010674&txn_id=ol7lz&type=javascript&version=2.3.50",
1411
+ transferKb: 1,
1412
+ decodedKb: 0,
1413
+ encoding: "none",
1414
+ durationMs: 232,
1415
+ initiatorType: "img",
1416
+ protocol: "unknown"
349
1417
  }
350
1418
  ]
351
1419
  };
352
- const tikTokPixel = {
353
- totalTransferKb: 2.7,
354
- totalDecodedKb: 7.6,
355
- loadTimeMs: 473,
1420
+ const tiktokPixel = {
1421
+ totalTransferKb: 148,
1422
+ totalDecodedKb: 623,
1423
+ loadTimeMs: 271,
1424
+ collectsWebVitals: true,
1425
+ apis: {
1426
+ cookies: true,
1427
+ localStorage: false,
1428
+ sessionStorage: true,
1429
+ indexedDB: false,
1430
+ canvas: false,
1431
+ webgl: false,
1432
+ audioContext: false,
1433
+ userAgent: true,
1434
+ doNotTrack: false,
1435
+ hardwareConcurrency: false,
1436
+ deviceMemory: false,
1437
+ plugins: false,
1438
+ languages: false,
1439
+ screen: false,
1440
+ timezone: false,
1441
+ platform: false,
1442
+ vendor: false,
1443
+ connection: true,
1444
+ maxTouchPoints: false,
1445
+ devicePixelRatio: false,
1446
+ mediaDevices: false,
1447
+ getBattery: false,
1448
+ referrer: true,
1449
+ windowName: true,
1450
+ rtcPeerConnection: false,
1451
+ geolocation: false,
1452
+ serviceWorker: false,
1453
+ cacheApi: false,
1454
+ sendBeacon: true,
1455
+ fetch: false,
1456
+ xhr: false,
1457
+ websocket: false,
1458
+ mutationObserver: true,
1459
+ performanceObserver: true,
1460
+ intersectionObserver: false
1461
+ },
1462
+ cookies: [
1463
+ {
1464
+ name: "_ttp",
1465
+ domain: ".tiktok.com",
1466
+ path: "/",
1467
+ httpOnly: false,
1468
+ secure: true,
1469
+ sameSite: "None",
1470
+ session: false,
1471
+ lifetimeDays: 390,
1472
+ firstParty: false
1473
+ }
1474
+ ],
1475
+ network: {
1476
+ requestCount: 3,
1477
+ domains: [
1478
+ "analytics.tiktok.com"
1479
+ ],
1480
+ outboundBytes: 0,
1481
+ inboundBytes: 151545,
1482
+ injectedElements: [
1483
+ {
1484
+ tag: "script",
1485
+ src: "https://analytics.tiktok.com/i18n/pixel/static/identify_31760074.js"
1486
+ },
1487
+ {
1488
+ tag: "script",
1489
+ src: "https://analytics.tiktok.com/i18n/pixel/static/main.MTEwMjY2ZTExMA.js"
1490
+ }
1491
+ ]
1492
+ },
1493
+ performance: {
1494
+ taskDurationMs: 58,
1495
+ scriptDurationMs: 31,
1496
+ heapDeltaKb: 2284
1497
+ },
356
1498
  scripts: [
357
1499
  {
358
1500
  url: "https://analytics.tiktok.com/i18n/pixel/events.js",
359
- transferKb: 2.7,
1501
+ transferKb: 2.6,
360
1502
  decodedKb: 7.6,
361
1503
  encoding: "gzip",
362
- durationMs: 473,
1504
+ durationMs: 271,
1505
+ initiatorType: "script",
1506
+ protocol: "unknown"
1507
+ },
1508
+ {
1509
+ url: "https://analytics.tiktok.com/i18n/pixel/static/main.MTEwMjY2ZTExMA.js",
1510
+ transferKb: 105.8,
1511
+ decodedKb: 463.4,
1512
+ encoding: "gzip",
1513
+ durationMs: 49,
1514
+ initiatorType: "script",
1515
+ protocol: "unknown"
1516
+ },
1517
+ {
1518
+ url: "https://analytics.tiktok.com/i18n/pixel/static/identify_31760074.js",
1519
+ transferKb: 39.6,
1520
+ decodedKb: 152,
1521
+ encoding: "gzip",
1522
+ durationMs: 18,
363
1523
  initiatorType: "script",
364
1524
  protocol: "unknown"
365
1525
  }
366
1526
  ]
367
1527
  };
368
1528
  const snapchatPixel = {
369
- totalTransferKb: 24.7,
370
- totalDecodedKb: 57.4,
371
- loadTimeMs: 569,
1529
+ totalTransferKb: 1.3,
1530
+ totalDecodedKb: 58.2,
1531
+ loadTimeMs: 586,
1532
+ collectsWebVitals: false,
1533
+ apis: {
1534
+ cookies: true,
1535
+ localStorage: true,
1536
+ sessionStorage: true,
1537
+ indexedDB: false,
1538
+ canvas: false,
1539
+ webgl: false,
1540
+ audioContext: false,
1541
+ userAgent: true,
1542
+ doNotTrack: false,
1543
+ hardwareConcurrency: false,
1544
+ deviceMemory: false,
1545
+ plugins: false,
1546
+ languages: false,
1547
+ screen: true,
1548
+ timezone: false,
1549
+ platform: false,
1550
+ vendor: false,
1551
+ connection: false,
1552
+ maxTouchPoints: true,
1553
+ devicePixelRatio: false,
1554
+ mediaDevices: false,
1555
+ getBattery: false,
1556
+ referrer: true,
1557
+ windowName: false,
1558
+ rtcPeerConnection: false,
1559
+ geolocation: false,
1560
+ serviceWorker: false,
1561
+ cacheApi: false,
1562
+ sendBeacon: true,
1563
+ fetch: true,
1564
+ xhr: true,
1565
+ websocket: false,
1566
+ mutationObserver: true,
1567
+ performanceObserver: true,
1568
+ intersectionObserver: false
1569
+ },
1570
+ cookies: [
1571
+ {
1572
+ name: "X-AB",
1573
+ domain: "sc-static.net",
1574
+ path: "/scevent.min.js",
1575
+ httpOnly: false,
1576
+ secure: true,
1577
+ sameSite: "None",
1578
+ session: false,
1579
+ lifetimeDays: 1,
1580
+ firstParty: false
1581
+ },
1582
+ {
1583
+ name: "TapAd_TS",
1584
+ domain: ".tapad.com",
1585
+ path: "/",
1586
+ httpOnly: false,
1587
+ secure: true,
1588
+ sameSite: "None",
1589
+ session: false,
1590
+ lifetimeDays: 60,
1591
+ firstParty: false
1592
+ },
1593
+ {
1594
+ name: "TapAd_DID",
1595
+ domain: ".tapad.com",
1596
+ path: "/",
1597
+ httpOnly: false,
1598
+ secure: true,
1599
+ sameSite: "None",
1600
+ session: false,
1601
+ lifetimeDays: 60,
1602
+ firstParty: false
1603
+ },
1604
+ {
1605
+ name: "TapAd_3WAY_SYNCS",
1606
+ domain: ".tapad.com",
1607
+ path: "/",
1608
+ httpOnly: false,
1609
+ secure: true,
1610
+ sameSite: "None",
1611
+ session: false,
1612
+ lifetimeDays: 60,
1613
+ firstParty: false
1614
+ },
1615
+ {
1616
+ name: "sc_at",
1617
+ domain: ".snapchat.com",
1618
+ path: "/",
1619
+ httpOnly: false,
1620
+ secure: true,
1621
+ sameSite: "None",
1622
+ session: false,
1623
+ lifetimeDays: 390,
1624
+ firstParty: false
1625
+ }
1626
+ ],
1627
+ network: {
1628
+ requestCount: 9,
1629
+ domains: [
1630
+ "pixel.tapad.com",
1631
+ "sc-static.net",
1632
+ "tr.snapchat.com"
1633
+ ],
1634
+ outboundBytes: 1708,
1635
+ inboundBytes: 26697,
1636
+ injectedElements: [
1637
+ ]
1638
+ },
1639
+ performance: {
1640
+ taskDurationMs: 44,
1641
+ scriptDurationMs: 22,
1642
+ heapDeltaKb: 2350
1643
+ },
372
1644
  scripts: [
373
1645
  {
374
1646
  url: "https://sc-static.net/scevent.min.js",
375
- transferKb: 24.7,
1647
+ transferKb: 0,
376
1648
  decodedKb: 57.4,
377
1649
  encoding: "gzip",
378
- durationMs: 569,
1650
+ durationMs: 586,
379
1651
  initiatorType: "script",
380
1652
  protocol: "unknown"
1653
+ },
1654
+ {
1655
+ url: "https://tr.snapchat.com/config/1/2295cbcc-cb3f-4727-8c09-1133b742722c.json?v=3.54.3-2603171656",
1656
+ transferKb: 0.3,
1657
+ decodedKb: 0.1,
1658
+ encoding: "none",
1659
+ durationMs: 397,
1660
+ initiatorType: "fetch",
1661
+ protocol: "unknown"
1662
+ },
1663
+ {
1664
+ url: "https://tr.snapchat.com/cm/i?pid=2295cbcc-cb3f-4727-8c09-1133b742722c&u_scsid=e9658c18-2f77-4367-a29d-d7e8eea1cd39&u_sclid=9331619e-e4a6-4487-8893-cc362679f438",
1665
+ transferKb: 1,
1666
+ decodedKb: 0.7,
1667
+ encoding: "none",
1668
+ durationMs: 190,
1669
+ initiatorType: "iframe",
1670
+ protocol: "unknown"
1671
+ },
1672
+ {
1673
+ url: "https://tr.snapchat.com/p",
1674
+ transferKb: 0,
1675
+ decodedKb: 0,
1676
+ encoding: "none",
1677
+ durationMs: 120,
1678
+ initiatorType: "beacon",
1679
+ protocol: "unknown"
381
1680
  }
382
1681
  ]
383
1682
  };
384
1683
  const redditPixel = {
385
- totalTransferKb: 20,
386
- totalDecodedKb: 79.6,
387
- loadTimeMs: 122,
1684
+ totalTransferKb: 19.5,
1685
+ totalDecodedKb: 65.3,
1686
+ loadTimeMs: 326,
1687
+ collectsWebVitals: false,
1688
+ apis: {
1689
+ cookies: true,
1690
+ localStorage: true,
1691
+ sessionStorage: false,
1692
+ indexedDB: false,
1693
+ canvas: false,
1694
+ webgl: false,
1695
+ audioContext: false,
1696
+ userAgent: false,
1697
+ doNotTrack: false,
1698
+ hardwareConcurrency: false,
1699
+ deviceMemory: false,
1700
+ plugins: false,
1701
+ languages: false,
1702
+ screen: true,
1703
+ timezone: false,
1704
+ platform: false,
1705
+ vendor: false,
1706
+ connection: false,
1707
+ maxTouchPoints: false,
1708
+ devicePixelRatio: false,
1709
+ mediaDevices: false,
1710
+ getBattery: false,
1711
+ referrer: false,
1712
+ windowName: false,
1713
+ rtcPeerConnection: false,
1714
+ geolocation: false,
1715
+ serviceWorker: false,
1716
+ cacheApi: false,
1717
+ sendBeacon: false,
1718
+ fetch: true,
1719
+ xhr: true,
1720
+ websocket: false,
1721
+ mutationObserver: false,
1722
+ performanceObserver: false,
1723
+ intersectionObserver: false
1724
+ },
1725
+ cookies: [
1726
+ ],
1727
+ network: {
1728
+ requestCount: 3,
1729
+ domains: [
1730
+ "alb.reddit.com",
1731
+ "pixel-config.reddit.com",
1732
+ "www.redditstatic.com"
1733
+ ],
1734
+ outboundBytes: 0,
1735
+ inboundBytes: 20080,
1736
+ injectedElements: [
1737
+ ]
1738
+ },
1739
+ performance: {
1740
+ taskDurationMs: 13,
1741
+ scriptDurationMs: 6,
1742
+ heapDeltaKb: 978
1743
+ },
388
1744
  scripts: [
389
1745
  {
390
1746
  url: "https://www.redditstatic.com/ads/pixel.js",
391
- transferKb: 20,
392
- decodedKb: 79.6,
1747
+ transferKb: 18.8,
1748
+ decodedKb: 65.3,
393
1749
  encoding: "gzip",
394
- durationMs: 122,
1750
+ durationMs: 111,
395
1751
  initiatorType: "script",
396
1752
  protocol: "unknown"
1753
+ },
1754
+ {
1755
+ url: "https://pixel-config.reddit.com/pixels/a2_ilz4u0kbdr3v/config",
1756
+ transferKb: 0.1,
1757
+ decodedKb: 0,
1758
+ encoding: "gzip",
1759
+ durationMs: 114,
1760
+ initiatorType: "xmlhttprequest",
1761
+ protocol: "unknown"
1762
+ },
1763
+ {
1764
+ url: "https://alb.reddit.com/rp.gif?ts=1773894825136&id=a2_ilz4u0kbdr3v&event=PageVisit&m.itemCount=&m.value=&m.valueDecimal=&m.currency=&m.transactionId=&m.customEventName=&m.products=&m.conversionId=&uuid=820c55c9-c762-482d-b326-dbfaa3a9d62f&aaid=&em=&pn=&external_id=&idfa=&integration=reddit&partner=&partner_version=&opt_out=0&sh=1280&sw=720&v=rdt_79aa2193&dpm=&dpcc=&dprc=",
1765
+ transferKb: 0.6,
1766
+ decodedKb: 0,
1767
+ encoding: "none",
1768
+ durationMs: 326,
1769
+ initiatorType: "img",
1770
+ protocol: "unknown"
397
1771
  }
398
1772
  ]
399
1773
  };
400
1774
  const googleAdsense = {
401
- totalTransferKb: 63.4,
402
- totalDecodedKb: 193.1,
403
- loadTimeMs: 401,
1775
+ totalTransferKb: 63,
1776
+ totalDecodedKb: 191.1,
1777
+ loadTimeMs: 296,
1778
+ collectsWebVitals: true,
1779
+ apis: {
1780
+ cookies: true,
1781
+ localStorage: true,
1782
+ sessionStorage: true,
1783
+ indexedDB: false,
1784
+ canvas: false,
1785
+ webgl: false,
1786
+ audioContext: false,
1787
+ userAgent: true,
1788
+ doNotTrack: false,
1789
+ hardwareConcurrency: false,
1790
+ deviceMemory: false,
1791
+ plugins: false,
1792
+ languages: false,
1793
+ screen: false,
1794
+ timezone: false,
1795
+ platform: false,
1796
+ vendor: false,
1797
+ connection: false,
1798
+ maxTouchPoints: false,
1799
+ devicePixelRatio: false,
1800
+ mediaDevices: false,
1801
+ getBattery: false,
1802
+ referrer: true,
1803
+ windowName: false,
1804
+ rtcPeerConnection: false,
1805
+ geolocation: false,
1806
+ serviceWorker: false,
1807
+ cacheApi: false,
1808
+ sendBeacon: false,
1809
+ fetch: true,
1810
+ xhr: true,
1811
+ websocket: false,
1812
+ mutationObserver: true,
1813
+ performanceObserver: true,
1814
+ intersectionObserver: false
1815
+ },
1816
+ cookies: [
1817
+ ],
1818
+ network: {
1819
+ requestCount: 1,
1820
+ domains: [
1821
+ "pagead2.googlesyndication.com"
1822
+ ],
1823
+ outboundBytes: 0,
1824
+ inboundBytes: 64705,
1825
+ injectedElements: [
1826
+ ]
1827
+ },
1828
+ performance: {
1829
+ taskDurationMs: 15,
1830
+ scriptDurationMs: 7,
1831
+ heapDeltaKb: 1805
1832
+ },
404
1833
  scripts: [
405
1834
  {
406
1835
  url: "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js",
407
- transferKb: 63.4,
408
- decodedKb: 193.1,
1836
+ transferKb: 63,
1837
+ decodedKb: 191.1,
409
1838
  encoding: "br",
410
- durationMs: 401,
1839
+ durationMs: 296,
411
1840
  initiatorType: "script",
412
1841
  protocol: "h2"
413
1842
  }
414
1843
  ]
415
1844
  };
416
1845
  const carbonAds = {
417
- totalTransferKb: 10.8,
418
- totalDecodedKb: 37.1,
419
- loadTimeMs: 55,
1846
+ totalTransferKb: 10.4,
1847
+ totalDecodedKb: 34.5,
1848
+ loadTimeMs: 74,
1849
+ collectsWebVitals: false,
1850
+ apis: {
1851
+ cookies: true,
1852
+ localStorage: false,
1853
+ sessionStorage: false,
1854
+ indexedDB: false,
1855
+ canvas: false,
1856
+ webgl: false,
1857
+ audioContext: false,
1858
+ userAgent: false,
1859
+ doNotTrack: false,
1860
+ hardwareConcurrency: false,
1861
+ deviceMemory: false,
1862
+ plugins: false,
1863
+ languages: false,
1864
+ screen: false,
1865
+ timezone: false,
1866
+ platform: false,
1867
+ vendor: false,
1868
+ connection: false,
1869
+ maxTouchPoints: false,
1870
+ devicePixelRatio: false,
1871
+ mediaDevices: false,
1872
+ getBattery: false,
1873
+ referrer: false,
1874
+ windowName: false,
1875
+ rtcPeerConnection: false,
1876
+ geolocation: false,
1877
+ serviceWorker: false,
1878
+ cacheApi: false,
1879
+ sendBeacon: false,
1880
+ fetch: true,
1881
+ xhr: false,
1882
+ websocket: false,
1883
+ mutationObserver: false,
1884
+ performanceObserver: false,
1885
+ intersectionObserver: true
1886
+ },
1887
+ cookies: [
1888
+ ],
1889
+ network: {
1890
+ requestCount: 1,
1891
+ domains: [
1892
+ "cdn.carbonads.com"
1893
+ ],
1894
+ outboundBytes: 0,
1895
+ inboundBytes: 10652,
1896
+ injectedElements: [
1897
+ ]
1898
+ },
1899
+ performance: {
1900
+ taskDurationMs: 7,
1901
+ scriptDurationMs: 1,
1902
+ heapDeltaKb: 718
1903
+ },
420
1904
  scripts: [
421
1905
  {
422
1906
  url: "https://cdn.carbonads.com/carbon.js?serve=CW7DTKJL&placement=unlighthousedev&format=cover",
423
- transferKb: 10.8,
424
- decodedKb: 37.1,
1907
+ transferKb: 10.4,
1908
+ decodedKb: 34.5,
425
1909
  encoding: "gzip",
426
- durationMs: 55,
1910
+ durationMs: 74,
427
1911
  initiatorType: "script",
428
1912
  protocol: "unknown"
429
1913
  }
430
1914
  ]
431
1915
  };
432
1916
  const hotjar = {
433
- totalTransferKb: 6.1,
434
- totalDecodedKb: 14.7,
435
- loadTimeMs: 346,
1917
+ totalTransferKb: 6.2,
1918
+ totalDecodedKb: 15,
1919
+ loadTimeMs: 339,
1920
+ collectsWebVitals: false,
1921
+ apis: {
1922
+ cookies: true,
1923
+ localStorage: true,
1924
+ sessionStorage: true,
1925
+ indexedDB: false,
1926
+ canvas: false,
1927
+ webgl: false,
1928
+ audioContext: false,
1929
+ userAgent: true,
1930
+ doNotTrack: true,
1931
+ hardwareConcurrency: false,
1932
+ deviceMemory: false,
1933
+ plugins: false,
1934
+ languages: true,
1935
+ screen: true,
1936
+ timezone: false,
1937
+ platform: false,
1938
+ vendor: false,
1939
+ connection: false,
1940
+ maxTouchPoints: false,
1941
+ devicePixelRatio: false,
1942
+ mediaDevices: false,
1943
+ getBattery: false,
1944
+ referrer: true,
1945
+ windowName: false,
1946
+ rtcPeerConnection: false,
1947
+ geolocation: false,
1948
+ serviceWorker: false,
1949
+ cacheApi: false,
1950
+ sendBeacon: true,
1951
+ fetch: false,
1952
+ xhr: true,
1953
+ websocket: true,
1954
+ mutationObserver: true,
1955
+ performanceObserver: false,
1956
+ intersectionObserver: false
1957
+ },
1958
+ cookies: [
1959
+ ],
1960
+ network: {
1961
+ requestCount: 1,
1962
+ domains: [
1963
+ "static.hotjar.com"
1964
+ ],
1965
+ outboundBytes: 0,
1966
+ inboundBytes: 6330,
1967
+ injectedElements: [
1968
+ ]
1969
+ },
1970
+ performance: {
1971
+ taskDurationMs: 8,
1972
+ scriptDurationMs: 1,
1973
+ heapDeltaKb: 742
1974
+ },
436
1975
  scripts: [
437
1976
  {
438
1977
  url: "https://static.hotjar.com/c/hotjar-3925006.js?sv=6",
439
- transferKb: 6.1,
440
- decodedKb: 14.7,
1978
+ transferKb: 6.2,
1979
+ decodedKb: 15,
441
1980
  encoding: "br",
442
- durationMs: 346,
1981
+ durationMs: 339,
443
1982
  initiatorType: "script",
444
1983
  protocol: "unknown"
445
1984
  }
446
1985
  ]
447
1986
  };
448
1987
  const clarity = {
449
- totalTransferKb: 0.8,
450
- totalDecodedKb: 0.6,
451
- loadTimeMs: 365,
1988
+ totalTransferKb: 27.3,
1989
+ totalDecodedKb: 80.2,
1990
+ loadTimeMs: 628,
1991
+ collectsWebVitals: true,
1992
+ apis: {
1993
+ cookies: true,
1994
+ localStorage: false,
1995
+ sessionStorage: true,
1996
+ indexedDB: false,
1997
+ canvas: false,
1998
+ webgl: false,
1999
+ audioContext: false,
2000
+ userAgent: true,
2001
+ doNotTrack: false,
2002
+ hardwareConcurrency: true,
2003
+ deviceMemory: true,
2004
+ plugins: false,
2005
+ languages: true,
2006
+ screen: true,
2007
+ timezone: true,
2008
+ platform: true,
2009
+ vendor: false,
2010
+ connection: true,
2011
+ maxTouchPoints: true,
2012
+ devicePixelRatio: true,
2013
+ mediaDevices: false,
2014
+ getBattery: false,
2015
+ referrer: true,
2016
+ windowName: false,
2017
+ rtcPeerConnection: false,
2018
+ geolocation: false,
2019
+ serviceWorker: false,
2020
+ cacheApi: false,
2021
+ sendBeacon: true,
2022
+ fetch: false,
2023
+ xhr: true,
2024
+ websocket: false,
2025
+ mutationObserver: true,
2026
+ performanceObserver: true,
2027
+ intersectionObserver: true
2028
+ },
2029
+ cookies: [
2030
+ ],
2031
+ network: {
2032
+ requestCount: 3,
2033
+ domains: [
2034
+ "k.clarity.ms",
2035
+ "scripts.clarity.ms",
2036
+ "www.clarity.ms"
2037
+ ],
2038
+ outboundBytes: 764,
2039
+ inboundBytes: 27893,
2040
+ injectedElements: [
2041
+ {
2042
+ tag: "script",
2043
+ src: "https://scripts.clarity.ms/0.8.57/clarity.js"
2044
+ }
2045
+ ]
2046
+ },
2047
+ performance: {
2048
+ taskDurationMs: 27,
2049
+ scriptDurationMs: 16,
2050
+ heapDeltaKb: 1188
2051
+ },
452
2052
  scripts: [
453
2053
  {
454
2054
  url: "https://www.clarity.ms/tag/mqk2m9dr2v",
455
- transferKb: 0.8,
2055
+ transferKb: 0.9,
456
2056
  decodedKb: 0.6,
457
2057
  encoding: "none",
458
- durationMs: 365,
2058
+ durationMs: 364,
459
2059
  initiatorType: "script",
460
2060
  protocol: "unknown"
2061
+ },
2062
+ {
2063
+ url: "https://scripts.clarity.ms/0.8.57/clarity.js",
2064
+ transferKb: 26.1,
2065
+ decodedKb: 79.6,
2066
+ encoding: "br",
2067
+ durationMs: 129,
2068
+ initiatorType: "script",
2069
+ protocol: "unknown"
2070
+ },
2071
+ {
2072
+ url: "https://k.clarity.ms/collect",
2073
+ transferKb: 0.3,
2074
+ decodedKb: 0,
2075
+ encoding: "none",
2076
+ durationMs: 628,
2077
+ initiatorType: "xmlhttprequest",
2078
+ protocol: "unknown"
461
2079
  }
462
2080
  ]
463
2081
  };
464
2082
  const googleTagManager = {
465
- totalTransferKb: 106.4,
466
- totalDecodedKb: 295.9,
467
- loadTimeMs: 483,
2083
+ totalTransferKb: 108.6,
2084
+ totalDecodedKb: 302.5,
2085
+ loadTimeMs: 477,
2086
+ collectsWebVitals: false,
2087
+ apis: {
2088
+ cookies: true,
2089
+ localStorage: true,
2090
+ sessionStorage: false,
2091
+ indexedDB: false,
2092
+ canvas: false,
2093
+ webgl: false,
2094
+ audioContext: false,
2095
+ userAgent: true,
2096
+ doNotTrack: false,
2097
+ hardwareConcurrency: false,
2098
+ deviceMemory: false,
2099
+ plugins: false,
2100
+ languages: false,
2101
+ screen: false,
2102
+ timezone: true,
2103
+ platform: false,
2104
+ vendor: false,
2105
+ connection: false,
2106
+ maxTouchPoints: false,
2107
+ devicePixelRatio: false,
2108
+ mediaDevices: false,
2109
+ getBattery: false,
2110
+ referrer: true,
2111
+ windowName: true,
2112
+ rtcPeerConnection: false,
2113
+ geolocation: false,
2114
+ serviceWorker: true,
2115
+ cacheApi: false,
2116
+ sendBeacon: true,
2117
+ fetch: true,
2118
+ xhr: true,
2119
+ websocket: false,
2120
+ mutationObserver: false,
2121
+ performanceObserver: false,
2122
+ intersectionObserver: false
2123
+ },
2124
+ cookies: [
2125
+ ],
2126
+ network: {
2127
+ requestCount: 1,
2128
+ domains: [
2129
+ "www.googletagmanager.com"
2130
+ ],
2131
+ outboundBytes: 0,
2132
+ inboundBytes: 111257,
2133
+ injectedElements: [
2134
+ ]
2135
+ },
2136
+ performance: {
2137
+ taskDurationMs: 16,
2138
+ scriptDurationMs: 6,
2139
+ heapDeltaKb: 1801
2140
+ },
468
2141
  scripts: [
469
2142
  {
470
2143
  url: "https://www.googletagmanager.com/gtm.js?id=GTM-MWW974PF",
471
- transferKb: 106.4,
472
- decodedKb: 295.9,
2144
+ transferKb: 108.6,
2145
+ decodedKb: 302.5,
473
2146
  encoding: "zstd",
474
- durationMs: 483,
2147
+ durationMs: 477,
475
2148
  initiatorType: "script",
476
2149
  protocol: "unknown"
477
2150
  }
@@ -480,14 +2153,69 @@ const googleTagManager = {
480
2153
  const intercom = {
481
2154
  totalTransferKb: 3.6,
482
2155
  totalDecodedKb: 7.4,
483
- loadTimeMs: 735,
2156
+ loadTimeMs: 703,
2157
+ collectsWebVitals: false,
2158
+ apis: {
2159
+ cookies: true,
2160
+ localStorage: true,
2161
+ sessionStorage: true,
2162
+ indexedDB: false,
2163
+ canvas: true,
2164
+ webgl: false,
2165
+ audioContext: false,
2166
+ userAgent: true,
2167
+ doNotTrack: false,
2168
+ hardwareConcurrency: false,
2169
+ deviceMemory: false,
2170
+ plugins: false,
2171
+ languages: false,
2172
+ screen: false,
2173
+ timezone: true,
2174
+ platform: true,
2175
+ vendor: true,
2176
+ connection: false,
2177
+ maxTouchPoints: true,
2178
+ devicePixelRatio: true,
2179
+ mediaDevices: false,
2180
+ getBattery: false,
2181
+ referrer: false,
2182
+ windowName: false,
2183
+ rtcPeerConnection: false,
2184
+ geolocation: false,
2185
+ serviceWorker: false,
2186
+ cacheApi: false,
2187
+ sendBeacon: false,
2188
+ fetch: true,
2189
+ xhr: true,
2190
+ websocket: false,
2191
+ mutationObserver: true,
2192
+ performanceObserver: false,
2193
+ intersectionObserver: false
2194
+ },
2195
+ cookies: [
2196
+ ],
2197
+ network: {
2198
+ requestCount: 1,
2199
+ domains: [
2200
+ "widget.intercom.io"
2201
+ ],
2202
+ outboundBytes: 0,
2203
+ inboundBytes: 3701,
2204
+ injectedElements: [
2205
+ ]
2206
+ },
2207
+ performance: {
2208
+ taskDurationMs: 6,
2209
+ scriptDurationMs: 0,
2210
+ heapDeltaKb: 712
2211
+ },
484
2212
  scripts: [
485
2213
  {
486
2214
  url: "https://widget.intercom.io/widget/akg5rmxb",
487
2215
  transferKb: 3.6,
488
2216
  decodedKb: 7.4,
489
2217
  encoding: "gzip",
490
- durationMs: 735,
2218
+ durationMs: 703,
491
2219
  initiatorType: "script",
492
2220
  protocol: "unknown"
493
2221
  }
@@ -495,31 +2223,141 @@ const intercom = {
495
2223
  };
496
2224
  const crisp = {
497
2225
  totalTransferKb: 3.3,
498
- totalDecodedKb: 7.6,
499
- loadTimeMs: 92,
2226
+ totalDecodedKb: 7.5,
2227
+ loadTimeMs: 156,
2228
+ collectsWebVitals: false,
2229
+ apis: {
2230
+ cookies: true,
2231
+ localStorage: true,
2232
+ sessionStorage: true,
2233
+ indexedDB: false,
2234
+ canvas: false,
2235
+ webgl: false,
2236
+ audioContext: true,
2237
+ userAgent: true,
2238
+ doNotTrack: true,
2239
+ hardwareConcurrency: false,
2240
+ deviceMemory: false,
2241
+ plugins: false,
2242
+ languages: true,
2243
+ screen: false,
2244
+ timezone: true,
2245
+ platform: true,
2246
+ vendor: false,
2247
+ connection: false,
2248
+ maxTouchPoints: true,
2249
+ devicePixelRatio: false,
2250
+ mediaDevices: true,
2251
+ getBattery: false,
2252
+ referrer: true,
2253
+ windowName: false,
2254
+ rtcPeerConnection: true,
2255
+ geolocation: true,
2256
+ serviceWorker: false,
2257
+ cacheApi: false,
2258
+ sendBeacon: false,
2259
+ fetch: true,
2260
+ xhr: true,
2261
+ websocket: true,
2262
+ mutationObserver: true,
2263
+ performanceObserver: false,
2264
+ intersectionObserver: false
2265
+ },
2266
+ cookies: [
2267
+ ],
2268
+ network: {
2269
+ requestCount: 1,
2270
+ domains: [
2271
+ "client.crisp.chat"
2272
+ ],
2273
+ outboundBytes: 0,
2274
+ inboundBytes: 3376,
2275
+ injectedElements: [
2276
+ ]
2277
+ },
2278
+ performance: {
2279
+ taskDurationMs: 7,
2280
+ scriptDurationMs: 1,
2281
+ heapDeltaKb: 726
2282
+ },
500
2283
  scripts: [
501
2284
  {
502
2285
  url: "https://client.crisp.chat/l.js",
503
2286
  transferKb: 3.3,
504
- decodedKb: 7.6,
2287
+ decodedKb: 7.5,
505
2288
  encoding: "br",
506
- durationMs: 92,
2289
+ durationMs: 156,
507
2290
  initiatorType: "script",
508
2291
  protocol: "unknown"
509
2292
  }
510
2293
  ]
511
2294
  };
512
2295
  const stripe = {
513
- totalTransferKb: 212.4,
514
- totalDecodedKb: 916.7,
515
- loadTimeMs: 170,
2296
+ totalTransferKb: 214,
2297
+ totalDecodedKb: 926.3,
2298
+ loadTimeMs: 181,
2299
+ collectsWebVitals: false,
2300
+ apis: {
2301
+ cookies: true,
2302
+ localStorage: false,
2303
+ sessionStorage: false,
2304
+ indexedDB: false,
2305
+ canvas: false,
2306
+ webgl: false,
2307
+ audioContext: false,
2308
+ userAgent: true,
2309
+ doNotTrack: false,
2310
+ hardwareConcurrency: false,
2311
+ deviceMemory: false,
2312
+ plugins: false,
2313
+ languages: true,
2314
+ screen: false,
2315
+ timezone: false,
2316
+ platform: true,
2317
+ vendor: false,
2318
+ connection: false,
2319
+ maxTouchPoints: true,
2320
+ devicePixelRatio: false,
2321
+ mediaDevices: false,
2322
+ getBattery: false,
2323
+ referrer: true,
2324
+ windowName: true,
2325
+ rtcPeerConnection: false,
2326
+ geolocation: false,
2327
+ serviceWorker: false,
2328
+ cacheApi: false,
2329
+ sendBeacon: false,
2330
+ fetch: true,
2331
+ xhr: true,
2332
+ websocket: false,
2333
+ mutationObserver: true,
2334
+ performanceObserver: true,
2335
+ intersectionObserver: true
2336
+ },
2337
+ cookies: [
2338
+ ],
2339
+ network: {
2340
+ requestCount: 1,
2341
+ domains: [
2342
+ "js.stripe.com"
2343
+ ],
2344
+ outboundBytes: 0,
2345
+ inboundBytes: 219406,
2346
+ injectedElements: [
2347
+ ]
2348
+ },
2349
+ performance: {
2350
+ taskDurationMs: 56,
2351
+ scriptDurationMs: 24,
2352
+ heapDeltaKb: 2336
2353
+ },
516
2354
  scripts: [
517
2355
  {
518
2356
  url: "https://js.stripe.com/v3/",
519
- transferKb: 212.4,
520
- decodedKb: 916.7,
2357
+ transferKb: 214,
2358
+ decodedKb: 926.3,
521
2359
  encoding: "br",
522
- durationMs: 170,
2360
+ durationMs: 181,
523
2361
  initiatorType: "script",
524
2362
  protocol: "h2"
525
2363
  }
@@ -528,30 +2366,140 @@ const stripe = {
528
2366
  const lemonSqueezy = {
529
2367
  totalTransferKb: 1.8,
530
2368
  totalDecodedKb: 3.8,
531
- loadTimeMs: 84,
2369
+ loadTimeMs: 115,
2370
+ collectsWebVitals: false,
2371
+ apis: {
2372
+ cookies: true,
2373
+ localStorage: false,
2374
+ sessionStorage: false,
2375
+ indexedDB: false,
2376
+ canvas: false,
2377
+ webgl: false,
2378
+ audioContext: false,
2379
+ userAgent: false,
2380
+ doNotTrack: false,
2381
+ hardwareConcurrency: false,
2382
+ deviceMemory: false,
2383
+ plugins: false,
2384
+ languages: false,
2385
+ screen: false,
2386
+ timezone: false,
2387
+ platform: false,
2388
+ vendor: false,
2389
+ connection: false,
2390
+ maxTouchPoints: false,
2391
+ devicePixelRatio: false,
2392
+ mediaDevices: false,
2393
+ getBattery: false,
2394
+ referrer: false,
2395
+ windowName: false,
2396
+ rtcPeerConnection: false,
2397
+ geolocation: false,
2398
+ serviceWorker: false,
2399
+ cacheApi: false,
2400
+ sendBeacon: false,
2401
+ fetch: false,
2402
+ xhr: false,
2403
+ websocket: false,
2404
+ mutationObserver: false,
2405
+ performanceObserver: false,
2406
+ intersectionObserver: false
2407
+ },
2408
+ cookies: [
2409
+ ],
2410
+ network: {
2411
+ requestCount: 1,
2412
+ domains: [
2413
+ "assets.lemonsqueezy.com"
2414
+ ],
2415
+ outboundBytes: 0,
2416
+ inboundBytes: 1832,
2417
+ injectedElements: [
2418
+ ]
2419
+ },
2420
+ performance: {
2421
+ taskDurationMs: 7,
2422
+ scriptDurationMs: 0,
2423
+ heapDeltaKb: 709
2424
+ },
532
2425
  scripts: [
533
2426
  {
534
2427
  url: "https://assets.lemonsqueezy.com/lemon.js",
535
2428
  transferKb: 1.8,
536
2429
  decodedKb: 3.8,
537
2430
  encoding: "br",
538
- durationMs: 84,
2431
+ durationMs: 115,
539
2432
  initiatorType: "script",
540
2433
  protocol: "unknown"
541
2434
  }
542
2435
  ]
543
2436
  };
544
- const payPal = {
545
- totalTransferKb: 49.6,
546
- totalDecodedKb: 150.9,
547
- loadTimeMs: 182,
2437
+ const paypal = {
2438
+ totalTransferKb: 48.8,
2439
+ totalDecodedKb: 148,
2440
+ loadTimeMs: 152,
2441
+ collectsWebVitals: false,
2442
+ apis: {
2443
+ cookies: false,
2444
+ localStorage: false,
2445
+ sessionStorage: false,
2446
+ indexedDB: false,
2447
+ canvas: false,
2448
+ webgl: false,
2449
+ audioContext: false,
2450
+ userAgent: true,
2451
+ doNotTrack: false,
2452
+ hardwareConcurrency: false,
2453
+ deviceMemory: false,
2454
+ plugins: false,
2455
+ languages: true,
2456
+ screen: false,
2457
+ timezone: false,
2458
+ platform: false,
2459
+ vendor: false,
2460
+ connection: true,
2461
+ maxTouchPoints: false,
2462
+ devicePixelRatio: false,
2463
+ mediaDevices: false,
2464
+ getBattery: false,
2465
+ referrer: false,
2466
+ windowName: false,
2467
+ rtcPeerConnection: false,
2468
+ geolocation: false,
2469
+ serviceWorker: false,
2470
+ cacheApi: false,
2471
+ sendBeacon: true,
2472
+ fetch: true,
2473
+ xhr: false,
2474
+ websocket: false,
2475
+ mutationObserver: false,
2476
+ performanceObserver: false,
2477
+ intersectionObserver: true
2478
+ },
2479
+ cookies: [
2480
+ ],
2481
+ network: {
2482
+ requestCount: 1,
2483
+ domains: [
2484
+ "www.paypal.com"
2485
+ ],
2486
+ outboundBytes: 0,
2487
+ inboundBytes: 49994,
2488
+ injectedElements: [
2489
+ ]
2490
+ },
2491
+ performance: {
2492
+ taskDurationMs: 26,
2493
+ scriptDurationMs: 15,
2494
+ heapDeltaKb: 1670
2495
+ },
548
2496
  scripts: [
549
2497
  {
550
2498
  url: "https://www.paypal.com/web-sdk/v6/core",
551
- transferKb: 49.6,
552
- decodedKb: 150.9,
2499
+ transferKb: 48.8,
2500
+ decodedKb: 148,
553
2501
  encoding: "gzip",
554
- durationMs: 182,
2502
+ durationMs: 152,
555
2503
  initiatorType: "script",
556
2504
  protocol: "unknown"
557
2505
  }
@@ -560,39 +2508,230 @@ const payPal = {
560
2508
  const vimeoPlayer = {
561
2509
  totalTransferKb: 8.9,
562
2510
  totalDecodedKb: 23.8,
563
- loadTimeMs: 107,
2511
+ loadTimeMs: 91,
2512
+ collectsWebVitals: false,
2513
+ apis: {
2514
+ cookies: false,
2515
+ localStorage: false,
2516
+ sessionStorage: false,
2517
+ indexedDB: false,
2518
+ canvas: false,
2519
+ webgl: false,
2520
+ audioContext: false,
2521
+ userAgent: true,
2522
+ doNotTrack: false,
2523
+ hardwareConcurrency: false,
2524
+ deviceMemory: false,
2525
+ plugins: false,
2526
+ languages: false,
2527
+ screen: false,
2528
+ timezone: false,
2529
+ platform: false,
2530
+ vendor: false,
2531
+ connection: false,
2532
+ maxTouchPoints: false,
2533
+ devicePixelRatio: false,
2534
+ mediaDevices: false,
2535
+ getBattery: false,
2536
+ referrer: false,
2537
+ windowName: false,
2538
+ rtcPeerConnection: false,
2539
+ geolocation: false,
2540
+ serviceWorker: false,
2541
+ cacheApi: false,
2542
+ sendBeacon: false,
2543
+ fetch: false,
2544
+ xhr: true,
2545
+ websocket: true,
2546
+ mutationObserver: false,
2547
+ performanceObserver: false,
2548
+ intersectionObserver: false
2549
+ },
2550
+ cookies: [
2551
+ {
2552
+ name: "__cf_bm",
2553
+ domain: ".vimeo.com",
2554
+ path: "/",
2555
+ httpOnly: true,
2556
+ secure: true,
2557
+ sameSite: "None",
2558
+ session: false,
2559
+ lifetimeDays: 0,
2560
+ firstParty: false
2561
+ },
2562
+ {
2563
+ name: "_cfuvid",
2564
+ domain: ".vimeo.com",
2565
+ path: "/",
2566
+ httpOnly: true,
2567
+ secure: true,
2568
+ sameSite: "None",
2569
+ session: true,
2570
+ lifetimeDays: -1,
2571
+ firstParty: false
2572
+ }
2573
+ ],
2574
+ network: {
2575
+ requestCount: 1,
2576
+ domains: [
2577
+ "player.vimeo.com"
2578
+ ],
2579
+ outboundBytes: 0,
2580
+ inboundBytes: 9084,
2581
+ injectedElements: [
2582
+ ]
2583
+ },
2584
+ performance: {
2585
+ taskDurationMs: 7,
2586
+ scriptDurationMs: 0,
2587
+ heapDeltaKb: 730
2588
+ },
564
2589
  scripts: [
565
2590
  {
566
2591
  url: "https://player.vimeo.com/api/player.js",
567
2592
  transferKb: 8.9,
568
2593
  decodedKb: 23.8,
569
2594
  encoding: "gzip",
570
- durationMs: 107,
2595
+ durationMs: 91,
571
2596
  initiatorType: "script",
572
2597
  protocol: "unknown"
573
2598
  }
574
2599
  ]
575
2600
  };
576
- const youTubePlayer = {
2601
+ const youtubePlayer = {
577
2602
  totalTransferKb: 14,
578
2603
  totalDecodedKb: 32.4,
579
- loadTimeMs: 293,
2604
+ loadTimeMs: 341,
2605
+ collectsWebVitals: false,
2606
+ apis: {
2607
+ cookies: false,
2608
+ localStorage: false,
2609
+ sessionStorage: false,
2610
+ indexedDB: false,
2611
+ canvas: false,
2612
+ webgl: false,
2613
+ audioContext: false,
2614
+ userAgent: true,
2615
+ doNotTrack: false,
2616
+ hardwareConcurrency: false,
2617
+ deviceMemory: false,
2618
+ plugins: false,
2619
+ languages: false,
2620
+ screen: false,
2621
+ timezone: false,
2622
+ platform: false,
2623
+ vendor: false,
2624
+ connection: false,
2625
+ maxTouchPoints: false,
2626
+ devicePixelRatio: false,
2627
+ mediaDevices: false,
2628
+ getBattery: false,
2629
+ referrer: true,
2630
+ windowName: false,
2631
+ rtcPeerConnection: false,
2632
+ geolocation: false,
2633
+ serviceWorker: false,
2634
+ cacheApi: false,
2635
+ sendBeacon: false,
2636
+ fetch: false,
2637
+ xhr: false,
2638
+ websocket: false,
2639
+ mutationObserver: false,
2640
+ performanceObserver: false,
2641
+ intersectionObserver: false
2642
+ },
2643
+ cookies: [
2644
+ {
2645
+ name: "__Secure-YNID",
2646
+ domain: ".youtube.com",
2647
+ path: "/",
2648
+ httpOnly: true,
2649
+ secure: true,
2650
+ sameSite: "None",
2651
+ session: false,
2652
+ lifetimeDays: 180,
2653
+ firstParty: false
2654
+ },
2655
+ {
2656
+ name: "YSC",
2657
+ domain: ".youtube.com",
2658
+ path: "/",
2659
+ httpOnly: true,
2660
+ secure: true,
2661
+ sameSite: "None",
2662
+ session: true,
2663
+ lifetimeDays: -1,
2664
+ firstParty: false
2665
+ },
2666
+ {
2667
+ name: "VISITOR_INFO1_LIVE",
2668
+ domain: ".youtube.com",
2669
+ path: "/",
2670
+ httpOnly: true,
2671
+ secure: true,
2672
+ sameSite: "None",
2673
+ session: false,
2674
+ lifetimeDays: 180,
2675
+ firstParty: false
2676
+ },
2677
+ {
2678
+ name: "VISITOR_PRIVACY_METADATA",
2679
+ domain: ".youtube.com",
2680
+ path: "/",
2681
+ httpOnly: true,
2682
+ secure: true,
2683
+ sameSite: "None",
2684
+ session: false,
2685
+ lifetimeDays: 180,
2686
+ firstParty: false
2687
+ },
2688
+ {
2689
+ name: "__Secure-ROLLOUT_TOKEN",
2690
+ domain: ".youtube.com",
2691
+ path: "/",
2692
+ httpOnly: true,
2693
+ secure: true,
2694
+ sameSite: "None",
2695
+ session: false,
2696
+ lifetimeDays: 180,
2697
+ firstParty: false
2698
+ }
2699
+ ],
2700
+ network: {
2701
+ requestCount: 2,
2702
+ domains: [
2703
+ "www.youtube.com"
2704
+ ],
2705
+ outboundBytes: 0,
2706
+ inboundBytes: 14262,
2707
+ injectedElements: [
2708
+ {
2709
+ tag: "script",
2710
+ src: "https://www.youtube.com/s/player/f4f314f0/www-widgetapi.vflset/www-widgetapi.js"
2711
+ }
2712
+ ]
2713
+ },
2714
+ performance: {
2715
+ taskDurationMs: 8,
2716
+ scriptDurationMs: 1,
2717
+ heapDeltaKb: 800
2718
+ },
580
2719
  scripts: [
581
2720
  {
582
2721
  url: "https://www.youtube.com/iframe_api",
583
2722
  transferKb: 3.4,
584
2723
  decodedKb: 1,
585
2724
  encoding: "br",
586
- durationMs: 293,
2725
+ durationMs: 341,
587
2726
  initiatorType: "script",
588
2727
  protocol: "unknown"
589
2728
  },
590
2729
  {
591
- url: "https://www.youtube.com/s/player/99f55c01/www-widgetapi.vflset/www-widgetapi.js",
2730
+ url: "https://www.youtube.com/s/player/f4f314f0/www-widgetapi.vflset/www-widgetapi.js",
592
2731
  transferKb: 10.6,
593
2732
  decodedKb: 31.4,
594
2733
  encoding: "br",
595
- durationMs: 20,
2734
+ durationMs: 21,
596
2735
  initiatorType: "script",
597
2736
  protocol: "unknown"
598
2737
  }
@@ -602,6 +2741,60 @@ const googleMaps = {
602
2741
  totalTransferKb: 0,
603
2742
  totalDecodedKb: 0,
604
2743
  loadTimeMs: 0,
2744
+ collectsWebVitals: false,
2745
+ apis: {
2746
+ cookies: false,
2747
+ localStorage: false,
2748
+ sessionStorage: false,
2749
+ indexedDB: false,
2750
+ canvas: false,
2751
+ webgl: false,
2752
+ audioContext: false,
2753
+ userAgent: false,
2754
+ doNotTrack: false,
2755
+ hardwareConcurrency: false,
2756
+ deviceMemory: false,
2757
+ plugins: false,
2758
+ languages: false,
2759
+ screen: false,
2760
+ timezone: false,
2761
+ platform: false,
2762
+ vendor: false,
2763
+ connection: false,
2764
+ maxTouchPoints: false,
2765
+ devicePixelRatio: false,
2766
+ mediaDevices: false,
2767
+ getBattery: false,
2768
+ referrer: false,
2769
+ windowName: false,
2770
+ rtcPeerConnection: false,
2771
+ geolocation: false,
2772
+ serviceWorker: false,
2773
+ cacheApi: false,
2774
+ sendBeacon: false,
2775
+ fetch: false,
2776
+ xhr: false,
2777
+ websocket: false,
2778
+ mutationObserver: false,
2779
+ performanceObserver: false,
2780
+ intersectionObserver: false
2781
+ },
2782
+ cookies: [
2783
+ ],
2784
+ network: {
2785
+ requestCount: 0,
2786
+ domains: [
2787
+ ],
2788
+ outboundBytes: 0,
2789
+ inboundBytes: 0,
2790
+ injectedElements: [
2791
+ ]
2792
+ },
2793
+ performance: {
2794
+ taskDurationMs: 0,
2795
+ scriptDurationMs: 0,
2796
+ heapDeltaKb: 0
2797
+ },
605
2798
  scripts: [
606
2799
  ]
607
2800
  };
@@ -609,80 +2802,514 @@ const npm = {
609
2802
  totalTransferKb: 0,
610
2803
  totalDecodedKb: 0,
611
2804
  loadTimeMs: 0,
2805
+ collectsWebVitals: false,
2806
+ apis: {
2807
+ cookies: false,
2808
+ localStorage: false,
2809
+ sessionStorage: false,
2810
+ indexedDB: false,
2811
+ canvas: false,
2812
+ webgl: false,
2813
+ audioContext: false,
2814
+ userAgent: false,
2815
+ doNotTrack: false,
2816
+ hardwareConcurrency: false,
2817
+ deviceMemory: false,
2818
+ plugins: false,
2819
+ languages: false,
2820
+ screen: false,
2821
+ timezone: false,
2822
+ platform: false,
2823
+ vendor: false,
2824
+ connection: false,
2825
+ maxTouchPoints: false,
2826
+ devicePixelRatio: false,
2827
+ mediaDevices: false,
2828
+ getBattery: false,
2829
+ referrer: false,
2830
+ windowName: false,
2831
+ rtcPeerConnection: false,
2832
+ geolocation: false,
2833
+ serviceWorker: false,
2834
+ cacheApi: false,
2835
+ sendBeacon: false,
2836
+ fetch: false,
2837
+ xhr: false,
2838
+ websocket: false,
2839
+ mutationObserver: false,
2840
+ performanceObserver: false,
2841
+ intersectionObserver: false
2842
+ },
2843
+ cookies: [
2844
+ ],
2845
+ network: {
2846
+ requestCount: 0,
2847
+ domains: [
2848
+ ],
2849
+ outboundBytes: 0,
2850
+ inboundBytes: 0,
2851
+ injectedElements: [
2852
+ ]
2853
+ },
2854
+ performance: {
2855
+ taskDurationMs: 0,
2856
+ scriptDurationMs: 0,
2857
+ heapDeltaKb: 0
2858
+ },
612
2859
  scripts: [
613
2860
  ]
614
2861
  };
615
2862
  const googleRecaptcha = {
616
- totalTransferKb: 360.6,
617
- totalDecodedKb: 844.4,
618
- loadTimeMs: 252,
2863
+ totalTransferKb: 363.9,
2864
+ totalDecodedKb: 852,
2865
+ loadTimeMs: 244,
2866
+ collectsWebVitals: false,
2867
+ apis: {
2868
+ cookies: true,
2869
+ localStorage: true,
2870
+ sessionStorage: true,
2871
+ indexedDB: false,
2872
+ canvas: false,
2873
+ webgl: false,
2874
+ audioContext: false,
2875
+ userAgent: true,
2876
+ doNotTrack: false,
2877
+ hardwareConcurrency: false,
2878
+ deviceMemory: true,
2879
+ plugins: false,
2880
+ languages: false,
2881
+ screen: true,
2882
+ timezone: true,
2883
+ platform: false,
2884
+ vendor: false,
2885
+ connection: false,
2886
+ maxTouchPoints: true,
2887
+ devicePixelRatio: false,
2888
+ mediaDevices: true,
2889
+ getBattery: false,
2890
+ referrer: false,
2891
+ windowName: false,
2892
+ rtcPeerConnection: false,
2893
+ geolocation: false,
2894
+ serviceWorker: false,
2895
+ cacheApi: false,
2896
+ sendBeacon: true,
2897
+ fetch: true,
2898
+ xhr: true,
2899
+ websocket: false,
2900
+ mutationObserver: true,
2901
+ performanceObserver: true,
2902
+ intersectionObserver: false
2903
+ },
2904
+ cookies: [
2905
+ ],
2906
+ network: {
2907
+ requestCount: 2,
2908
+ domains: [
2909
+ "www.google.com",
2910
+ "www.gstatic.com"
2911
+ ],
2912
+ outboundBytes: 0,
2913
+ inboundBytes: 373010,
2914
+ injectedElements: [
2915
+ {
2916
+ tag: "script",
2917
+ src: "https://www.gstatic.com/recaptcha/releases/qm3PSRIx10pekcnS9DjGnjPW/recaptcha__en.js"
2918
+ }
2919
+ ]
2920
+ },
2921
+ performance: {
2922
+ taskDurationMs: 74,
2923
+ scriptDurationMs: 41,
2924
+ heapDeltaKb: 2997
2925
+ },
619
2926
  scripts: [
620
2927
  {
621
2928
  url: "https://www.google.com/recaptcha/api.js",
622
2929
  transferKb: 1.5,
623
- decodedKb: 1.6,
2930
+ decodedKb: 1.5,
624
2931
  encoding: "gzip",
625
- durationMs: 252,
2932
+ durationMs: 244,
626
2933
  initiatorType: "script",
627
2934
  protocol: "unknown"
628
2935
  },
629
2936
  {
630
- url: "https://www.gstatic.com/recaptcha/releases/QvLuXwupqtKMva7GIh5eGl3U/recaptcha__en.js",
631
- transferKb: 359.1,
632
- decodedKb: 842.8,
2937
+ url: "https://www.gstatic.com/recaptcha/releases/qm3PSRIx10pekcnS9DjGnjPW/recaptcha__en.js",
2938
+ transferKb: 362.4,
2939
+ decodedKb: 850.5,
633
2940
  encoding: "gzip",
634
- durationMs: 227,
2941
+ durationMs: 226,
635
2942
  initiatorType: "script",
636
2943
  protocol: "h2"
637
2944
  }
638
2945
  ]
639
2946
  };
640
2947
  const googleSignIn = {
641
- totalTransferKb: 91.8,
642
- totalDecodedKb: 246.7,
643
- loadTimeMs: 916,
2948
+ totalTransferKb: 92.1,
2949
+ totalDecodedKb: 247.6,
2950
+ loadTimeMs: 572,
2951
+ collectsWebVitals: false,
2952
+ apis: {
2953
+ cookies: true,
2954
+ localStorage: false,
2955
+ sessionStorage: true,
2956
+ indexedDB: false,
2957
+ canvas: false,
2958
+ webgl: false,
2959
+ audioContext: false,
2960
+ userAgent: true,
2961
+ doNotTrack: false,
2962
+ hardwareConcurrency: false,
2963
+ deviceMemory: false,
2964
+ plugins: false,
2965
+ languages: false,
2966
+ screen: true,
2967
+ timezone: false,
2968
+ platform: false,
2969
+ vendor: false,
2970
+ connection: false,
2971
+ maxTouchPoints: false,
2972
+ devicePixelRatio: false,
2973
+ mediaDevices: false,
2974
+ getBattery: false,
2975
+ referrer: false,
2976
+ windowName: false,
2977
+ rtcPeerConnection: false,
2978
+ geolocation: false,
2979
+ serviceWorker: false,
2980
+ cacheApi: false,
2981
+ sendBeacon: false,
2982
+ fetch: false,
2983
+ xhr: true,
2984
+ websocket: false,
2985
+ mutationObserver: false,
2986
+ performanceObserver: false,
2987
+ intersectionObserver: false
2988
+ },
2989
+ cookies: [
2990
+ ],
2991
+ network: {
2992
+ requestCount: 1,
2993
+ domains: [
2994
+ "accounts.google.com"
2995
+ ],
2996
+ outboundBytes: 0,
2997
+ inboundBytes: 94340,
2998
+ injectedElements: [
2999
+ ]
3000
+ },
3001
+ performance: {
3002
+ taskDurationMs: 15,
3003
+ scriptDurationMs: 5,
3004
+ heapDeltaKb: 1198
3005
+ },
644
3006
  scripts: [
645
3007
  {
646
3008
  url: "https://accounts.google.com/gsi/client",
647
- transferKb: 91.8,
648
- decodedKb: 246.7,
3009
+ transferKb: 92.1,
3010
+ decodedKb: 247.6,
649
3011
  encoding: "gzip",
650
- durationMs: 916,
3012
+ durationMs: 572,
651
3013
  initiatorType: "script",
652
3014
  protocol: "unknown"
653
3015
  }
654
3016
  ]
655
3017
  };
656
- const vercelAnalytics = {
657
- totalTransferKb: 1.5,
658
- totalDecodedKb: 3.8,
659
- loadTimeMs: 80,
3018
+ const blueskyEmbed = {
3019
+ totalTransferKb: 0,
3020
+ totalDecodedKb: 0,
3021
+ loadTimeMs: 0,
3022
+ collectsWebVitals: false,
3023
+ apis: {
3024
+ cookies: false,
3025
+ localStorage: false,
3026
+ sessionStorage: false,
3027
+ indexedDB: false,
3028
+ canvas: false,
3029
+ webgl: false,
3030
+ audioContext: false,
3031
+ userAgent: false,
3032
+ doNotTrack: false,
3033
+ hardwareConcurrency: false,
3034
+ deviceMemory: false,
3035
+ plugins: false,
3036
+ languages: false,
3037
+ screen: false,
3038
+ timezone: false,
3039
+ platform: false,
3040
+ vendor: false,
3041
+ connection: false,
3042
+ maxTouchPoints: false,
3043
+ devicePixelRatio: false,
3044
+ mediaDevices: false,
3045
+ getBattery: false,
3046
+ referrer: false,
3047
+ windowName: false,
3048
+ rtcPeerConnection: false,
3049
+ geolocation: false,
3050
+ serviceWorker: false,
3051
+ cacheApi: false,
3052
+ sendBeacon: false,
3053
+ fetch: false,
3054
+ xhr: false,
3055
+ websocket: false,
3056
+ mutationObserver: false,
3057
+ performanceObserver: false,
3058
+ intersectionObserver: false
3059
+ },
3060
+ cookies: [
3061
+ ],
3062
+ network: {
3063
+ requestCount: 0,
3064
+ domains: [
3065
+ ],
3066
+ outboundBytes: 0,
3067
+ inboundBytes: 0,
3068
+ injectedElements: [
3069
+ ]
3070
+ },
3071
+ performance: {
3072
+ taskDurationMs: 0,
3073
+ scriptDurationMs: 0,
3074
+ heapDeltaKb: 0
3075
+ },
3076
+ scripts: [
3077
+ ]
3078
+ };
3079
+ const instagramEmbed = {
3080
+ totalTransferKb: 33.9,
3081
+ totalDecodedKb: 102.2,
3082
+ loadTimeMs: 327,
3083
+ collectsWebVitals: false,
3084
+ apis: {
3085
+ cookies: false,
3086
+ localStorage: false,
3087
+ sessionStorage: false,
3088
+ indexedDB: false,
3089
+ canvas: false,
3090
+ webgl: false,
3091
+ audioContext: false,
3092
+ userAgent: true,
3093
+ doNotTrack: false,
3094
+ hardwareConcurrency: false,
3095
+ deviceMemory: false,
3096
+ plugins: false,
3097
+ languages: false,
3098
+ screen: false,
3099
+ timezone: false,
3100
+ platform: false,
3101
+ vendor: false,
3102
+ connection: false,
3103
+ maxTouchPoints: false,
3104
+ devicePixelRatio: true,
3105
+ mediaDevices: false,
3106
+ getBattery: false,
3107
+ referrer: false,
3108
+ windowName: false,
3109
+ rtcPeerConnection: false,
3110
+ geolocation: false,
3111
+ serviceWorker: false,
3112
+ cacheApi: false,
3113
+ sendBeacon: false,
3114
+ fetch: false,
3115
+ xhr: false,
3116
+ websocket: false,
3117
+ mutationObserver: false,
3118
+ performanceObserver: false,
3119
+ intersectionObserver: false
3120
+ },
3121
+ cookies: [
3122
+ ],
3123
+ network: {
3124
+ requestCount: 1,
3125
+ domains: [
3126
+ "www.instagram.com"
3127
+ ],
3128
+ outboundBytes: 0,
3129
+ inboundBytes: 36790,
3130
+ injectedElements: [
3131
+ ]
3132
+ },
3133
+ performance: {
3134
+ taskDurationMs: 16,
3135
+ scriptDurationMs: 9,
3136
+ heapDeltaKb: 875
3137
+ },
660
3138
  scripts: [
661
3139
  {
662
- url: "https://va.vercel-scripts.com/v1/script.js",
663
- transferKb: 1.5,
664
- decodedKb: 3.8,
665
- encoding: "gzip",
666
- durationMs: 80,
3140
+ url: "https://www.instagram.com/embed.js",
3141
+ transferKb: 33.9,
3142
+ decodedKb: 102.2,
3143
+ encoding: "zstd",
3144
+ durationMs: 327,
667
3145
  initiatorType: "script",
668
3146
  protocol: "h2"
669
3147
  }
670
3148
  ]
671
3149
  };
3150
+ const xEmbed = {
3151
+ totalTransferKb: 130.5,
3152
+ totalDecodedKb: 410.4,
3153
+ loadTimeMs: 72,
3154
+ collectsWebVitals: false,
3155
+ apis: {
3156
+ cookies: false,
3157
+ localStorage: true,
3158
+ sessionStorage: false,
3159
+ indexedDB: false,
3160
+ canvas: false,
3161
+ webgl: false,
3162
+ audioContext: false,
3163
+ userAgent: true,
3164
+ doNotTrack: false,
3165
+ hardwareConcurrency: false,
3166
+ deviceMemory: false,
3167
+ plugins: false,
3168
+ languages: false,
3169
+ screen: false,
3170
+ timezone: false,
3171
+ platform: false,
3172
+ vendor: false,
3173
+ connection: false,
3174
+ maxTouchPoints: false,
3175
+ devicePixelRatio: true,
3176
+ mediaDevices: false,
3177
+ getBattery: false,
3178
+ referrer: true,
3179
+ windowName: false,
3180
+ rtcPeerConnection: false,
3181
+ geolocation: false,
3182
+ serviceWorker: false,
3183
+ cacheApi: false,
3184
+ sendBeacon: false,
3185
+ fetch: false,
3186
+ xhr: true,
3187
+ websocket: false,
3188
+ mutationObserver: true,
3189
+ performanceObserver: false,
3190
+ intersectionObserver: true
3191
+ },
3192
+ cookies: [
3193
+ ],
3194
+ network: {
3195
+ requestCount: 3,
3196
+ domains: [
3197
+ "platform.twitter.com",
3198
+ "syndication.twitter.com"
3199
+ ],
3200
+ outboundBytes: 0,
3201
+ inboundBytes: 134601,
3202
+ injectedElements: [
3203
+ {
3204
+ tag: "iframe",
3205
+ src: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%3A34081"
3206
+ }
3207
+ ]
3208
+ },
3209
+ performance: {
3210
+ taskDurationMs: 49,
3211
+ scriptDurationMs: 14,
3212
+ heapDeltaKb: 2457
3213
+ },
3214
+ scripts: [
3215
+ {
3216
+ url: "https://platform.twitter.com/widgets.js",
3217
+ transferKb: 27.3,
3218
+ decodedKb: 90.9,
3219
+ encoding: "gzip",
3220
+ durationMs: 72,
3221
+ initiatorType: "script",
3222
+ protocol: "unknown"
3223
+ },
3224
+ {
3225
+ url: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%3A34081",
3226
+ transferKb: 103.2,
3227
+ decodedKb: 319.5,
3228
+ encoding: "gzip",
3229
+ durationMs: 52,
3230
+ initiatorType: "iframe",
3231
+ protocol: "unknown"
3232
+ }
3233
+ ]
3234
+ };
3235
+ const gravatar = {
3236
+ totalTransferKb: 0,
3237
+ totalDecodedKb: 0,
3238
+ loadTimeMs: 0,
3239
+ collectsWebVitals: false,
3240
+ apis: {
3241
+ cookies: false,
3242
+ localStorage: false,
3243
+ sessionStorage: false,
3244
+ indexedDB: false,
3245
+ canvas: false,
3246
+ webgl: false,
3247
+ audioContext: false,
3248
+ userAgent: false,
3249
+ doNotTrack: false,
3250
+ hardwareConcurrency: false,
3251
+ deviceMemory: false,
3252
+ plugins: false,
3253
+ languages: false,
3254
+ screen: false,
3255
+ timezone: false,
3256
+ platform: false,
3257
+ vendor: false,
3258
+ connection: false,
3259
+ maxTouchPoints: false,
3260
+ devicePixelRatio: false,
3261
+ mediaDevices: false,
3262
+ getBattery: false,
3263
+ referrer: false,
3264
+ windowName: false,
3265
+ rtcPeerConnection: false,
3266
+ geolocation: false,
3267
+ serviceWorker: false,
3268
+ cacheApi: false,
3269
+ sendBeacon: false,
3270
+ fetch: false,
3271
+ xhr: false,
3272
+ websocket: false,
3273
+ mutationObserver: false,
3274
+ performanceObserver: false,
3275
+ intersectionObserver: false
3276
+ },
3277
+ cookies: [
3278
+ ],
3279
+ network: {
3280
+ requestCount: 0,
3281
+ domains: [
3282
+ ],
3283
+ outboundBytes: 0,
3284
+ inboundBytes: 0,
3285
+ injectedElements: [
3286
+ ]
3287
+ },
3288
+ performance: {
3289
+ taskDurationMs: 0,
3290
+ scriptDurationMs: 0,
3291
+ heapDeltaKb: 0
3292
+ },
3293
+ scripts: [
3294
+ ]
3295
+ };
672
3296
  const scriptSizes = {
673
3297
  plausibleAnalytics: plausibleAnalytics,
674
3298
  cloudflareWebAnalytics: cloudflareWebAnalytics,
675
- postHog: postHog,
3299
+ posthog: posthog,
676
3300
  fathomAnalytics: fathomAnalytics,
677
3301
  matomoAnalytics: matomoAnalytics,
678
3302
  rybbitAnalytics: rybbitAnalytics,
679
3303
  databuddyAnalytics: databuddyAnalytics,
3304
+ mixpanelAnalytics: mixpanelAnalytics,
680
3305
  segment: segment,
681
3306
  googleAnalytics: googleAnalytics,
682
3307
  umamiAnalytics: umamiAnalytics,
3308
+ vercelAnalytics: vercelAnalytics,
3309
+ bingUet: bingUet,
683
3310
  metaPixel: metaPixel,
684
3311
  xPixel: xPixel,
685
- tikTokPixel: tikTokPixel,
3312
+ tiktokPixel: tiktokPixel,
686
3313
  snapchatPixel: snapchatPixel,
687
3314
  redditPixel: redditPixel,
688
3315
  googleAdsense: googleAdsense,
@@ -694,16 +3321,53 @@ const scriptSizes = {
694
3321
  crisp: crisp,
695
3322
  stripe: stripe,
696
3323
  lemonSqueezy: lemonSqueezy,
697
- payPal: payPal,
3324
+ paypal: paypal,
698
3325
  vimeoPlayer: vimeoPlayer,
699
- youTubePlayer: youTubePlayer,
3326
+ youtubePlayer: youtubePlayer,
700
3327
  googleMaps: googleMaps,
701
3328
  npm: npm,
702
3329
  googleRecaptcha: googleRecaptcha,
703
3330
  googleSignIn: googleSignIn,
704
- vercelAnalytics: vercelAnalytics
3331
+ blueskyEmbed: blueskyEmbed,
3332
+ instagramEmbed: instagramEmbed,
3333
+ xEmbed: xEmbed,
3334
+ gravatar: gravatar
705
3335
  };
706
3336
 
3337
+ const PERSISTENCE_APIS = ["cookies", "localStorage", "sessionStorage", "indexedDB"];
3338
+ const FINGERPRINTING_APIS = ["canvas", "webgl", "audioContext", "deviceMemory", "hardwareConcurrency", "plugins", "screen", "userAgent", "languages", "timezone", "platform", "vendor", "connection", "maxTouchPoints", "devicePixelRatio", "mediaDevices", "getBattery"];
3339
+ const TRACKING_APIS = ["referrer", "windowName", "rtcPeerConnection", "geolocation", "serviceWorker", "cacheApi"];
3340
+ const MONITORING_APIS = ["mutationObserver", "intersectionObserver"];
3341
+ const PERSISTENCE_WEIGHT = 10;
3342
+ const TRACKING_WEIGHT = 8;
3343
+ const FINGERPRINTING_WEIGHT = 6;
3344
+ const MONITORING_WEIGHT = 4;
3345
+ const MAX_SCORE = PERSISTENCE_APIS.length * PERSISTENCE_WEIGHT + TRACKING_APIS.length * TRACKING_WEIGHT + FINGERPRINTING_APIS.length * FINGERPRINTING_WEIGHT + MONITORING_APIS.length * MONITORING_WEIGHT;
3346
+ function computeApiPrivacyScore(apis) {
3347
+ const count = (keys) => keys.filter((k) => apis[k]).length;
3348
+ const persistence = count(PERSISTENCE_APIS);
3349
+ const fingerprinting = count(FINGERPRINTING_APIS);
3350
+ const tracking = count(TRACKING_APIS);
3351
+ const monitoring = count(MONITORING_APIS);
3352
+ const raw = persistence * PERSISTENCE_WEIGHT + tracking * TRACKING_WEIGHT + fingerprinting * FINGERPRINTING_WEIGHT + monitoring * MONITORING_WEIGHT;
3353
+ return {
3354
+ score: Math.round(raw / MAX_SCORE * 100),
3355
+ persistence,
3356
+ fingerprinting,
3357
+ tracking,
3358
+ monitoring
3359
+ };
3360
+ }
3361
+ const CLS_RISK_TAGS = /* @__PURE__ */ new Set(["iframe", "img", "div", "video"]);
3362
+ function computeCwvEstimate(perf, network, apis) {
3363
+ const lcpImpactMs = perf.scriptDurationMs;
3364
+ const clsElements = network.injectedElements.filter((e) => CLS_RISK_TAGS.has(e.tag)).length;
3365
+ const clsRisk = clsElements > 0;
3366
+ const heavyScript = perf.scriptDurationMs > 15;
3367
+ const domObserver = apis.mutationObserver;
3368
+ const inpRiskLevel = heavyScript && domObserver ? "high" : heavyScript || domObserver ? "medium" : "low";
3369
+ return { lcpImpactMs, clsRisk, clsElements, inpRiskLevel };
3370
+ }
707
3371
  const DOMAIN_RE = /^https?:\/\/([^/]+)/;
708
3372
  const USE_SCRIPT_RE = /^useScript/;
709
3373
  const WORD_SPLIT_RE = /[\s-]+/;
@@ -742,13 +3406,14 @@ function deriveMetaKey(importName, label) {
742
3406
  async function getScriptStats() {
743
3407
  const { registry } = await import('./registry.mjs');
744
3408
  const entries = await registry();
745
- const proxyConfigs = getAllProxyConfigs("/_scripts/assets");
3409
+ const proxyConfigs = getAllProxyConfigs("/_scripts/p");
746
3410
  const sizes = scriptSizes;
747
3411
  return entries.map((entry) => {
748
- const metaKey = deriveMetaKey(entry.import?.name, entry.label);
749
- const meta = scriptMeta[metaKey];
750
- const size = sizes[metaKey];
751
- const proxyConfig = entry.proxy ? proxyConfigs[entry.proxy] : void 0;
3412
+ const id = entry.registryKey || deriveMetaKey(entry.import?.name, entry.label);
3413
+ const meta = id && id in scriptMeta ? scriptMeta[id] : void 0;
3414
+ const size = sizes[id || ""];
3415
+ const proxyConfigKey = entry.proxy === false ? void 0 : entry.proxy || entry.registryKey;
3416
+ const proxyConfig = proxyConfigKey ? proxyConfigs[proxyConfigKey] : void 0;
752
3417
  let loadingMethod = "cdn";
753
3418
  if (entry.src === false)
754
3419
  loadingMethod = "npm";
@@ -759,17 +3424,28 @@ async function getScriptStats() {
759
3424
  const domains = extractDomains(routes);
760
3425
  const endpoints = Object.keys(routes).length;
761
3426
  return {
762
- id: metaKey,
763
- label: entry.label || metaKey,
3427
+ id,
3428
+ label: entry.label || id || "",
764
3429
  category: entry.category || "unknown",
765
3430
  scripts: size?.scripts ?? [],
766
3431
  totalTransferKb: size?.totalTransferKb ?? 0,
767
3432
  totalDecodedKb: size?.totalDecodedKb ?? 0,
768
3433
  trackedData: meta?.trackedData ?? [],
3434
+ collectsWebVitals: size?.collectsWebVitals ?? false,
3435
+ apis: size?.apis ?? {},
3436
+ apiPrivacyScore: computeApiPrivacyScore(size?.apis ?? {}),
3437
+ cookies: size?.cookies ?? [],
3438
+ network: size?.network ?? { requestCount: 0, domains: [], outboundBytes: 0, inboundBytes: 0, injectedElements: [] },
3439
+ performance: size?.performance ?? { taskDurationMs: 0, scriptDurationMs: 0, heapDeltaKb: 0 },
3440
+ cwvEstimate: computeCwvEstimate(
3441
+ size?.performance ?? { scriptDurationMs: 0},
3442
+ size?.network ?? { injectedElements: [] },
3443
+ size?.apis ?? {}
3444
+ ),
769
3445
  hasBundling: entry.scriptBundling !== false && entry.scriptBundling !== void 0,
770
- hasProxy: !!entry.proxy,
771
- domains,
772
- endpoints,
3446
+ hasProxy: !!proxyConfig,
3447
+ proxyDomains: domains,
3448
+ proxyEndpoints: endpoints,
773
3449
  privacy,
774
3450
  privacyLevel: computePrivacyLevel(privacy),
775
3451
  loadingMethod