@nuxt/scripts 1.0.0-beta.27 → 1.0.0-beta.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/200.html +1 -1
- package/dist/client/404.html +1 -1
- package/dist/client/_nuxt/{KCxg59bo.js → AwAKM0sG.js} +1 -1
- package/dist/client/_nuxt/{CwXQ1Eqw.js → Bl23o3st.js} +18 -18
- package/dist/client/_nuxt/{JXDRhrZp.js → CYlYSSNW.js} +1 -1
- package/dist/client/_nuxt/{viP3Pc9X.js → D5FIkDae.js} +1 -1
- package/dist/client/_nuxt/builds/latest.json +1 -1
- package/dist/client/_nuxt/builds/meta/3ca2fe82-918c-4528-826c-0bf9ff54a5fa.json +1 -0
- package/dist/client/_nuxt/error-404.1K8v8Su2.css +1 -0
- package/dist/client/_nuxt/error-500.B9qvKpQm.css +1 -0
- package/dist/client/index.html +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +12 -1
- package/dist/registry.mjs +4 -1
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.d.vue.ts +13 -3
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue +12 -7
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue.d.ts +13 -3
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.d.vue.ts +4 -34
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue +37 -36
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue.d.ts +4 -34
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsCircle.vue +5 -9
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsGeoJson.d.vue.ts +35 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsGeoJson.vue +68 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsGeoJson.vue.d.ts +35 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.d.vue.ts +4 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.vue +2 -6
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.vue.d.ts +4 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.d.vue.ts +6 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue +18 -10
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue.d.ts +6 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.d.vue.ts +40 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.vue +168 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsOverlayView.vue.d.ts +40 -0
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolygon.vue +4 -9
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolyline.vue +4 -9
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsRectangle.vue +5 -9
- package/dist/runtime/components/GoogleMaps/bindGoogleMapsEvents.d.ts +13 -0
- package/dist/runtime/components/GoogleMaps/bindGoogleMapsEvents.js +8 -0
- package/dist/runtime/registry/gravatar.d.ts +1 -0
- package/dist/runtime/registry/gravatar.js +1 -0
- package/dist/stats.mjs +283 -227
- package/dist/types-source.mjs +1247 -67
- package/package.json +3 -3
- package/dist/client/_nuxt/builds/meta/d0d06e27-af53-4f1a-b7ae-18727423b3ed.json +0 -1
- package/dist/client/_nuxt/error-404.C_3_IG5y.css +0 -1
- package/dist/client/_nuxt/error-500.DSv6YikH.css +0 -1
package/dist/stats.mjs
CHANGED
|
@@ -11,9 +11,9 @@ const scriptMeta = {
|
|
|
11
11
|
trackedData: ["page-views"]
|
|
12
12
|
},
|
|
13
13
|
posthog: {
|
|
14
|
-
urls: [],
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
urls: ["https://us-assets.i.posthog.com/static/array.js"],
|
|
15
|
+
trackedData: ["page-views", "events", "conversions", "user-identity", "session-replay", "heatmaps", "ab-testing"],
|
|
16
|
+
testId: "phc_test"
|
|
17
17
|
},
|
|
18
18
|
fathomAnalytics: {
|
|
19
19
|
urls: ["https://cdn.usefathom.com/script.js"],
|
|
@@ -175,7 +175,7 @@ const scriptMeta = {
|
|
|
175
175
|
},
|
|
176
176
|
// Identity
|
|
177
177
|
gravatar: {
|
|
178
|
-
urls: [],
|
|
178
|
+
urls: ["https://secure.gravatar.com/js/gprofiles.js"],
|
|
179
179
|
trackedData: []
|
|
180
180
|
}
|
|
181
181
|
};
|
|
@@ -183,7 +183,7 @@ const scriptMeta = {
|
|
|
183
183
|
const plausibleAnalytics = {
|
|
184
184
|
totalTransferKb: 1.9,
|
|
185
185
|
totalDecodedKb: 2.9,
|
|
186
|
-
loadTimeMs:
|
|
186
|
+
loadTimeMs: 71,
|
|
187
187
|
collectsWebVitals: false,
|
|
188
188
|
apis: {
|
|
189
189
|
cookies: false,
|
|
@@ -245,7 +245,7 @@ const plausibleAnalytics = {
|
|
|
245
245
|
transferKb: 1.9,
|
|
246
246
|
decodedKb: 2.9,
|
|
247
247
|
encoding: "zstd",
|
|
248
|
-
durationMs:
|
|
248
|
+
durationMs: 71,
|
|
249
249
|
initiatorType: "script",
|
|
250
250
|
protocol: "unknown"
|
|
251
251
|
}
|
|
@@ -254,7 +254,7 @@ const plausibleAnalytics = {
|
|
|
254
254
|
const cloudflareWebAnalytics = {
|
|
255
255
|
totalTransferKb: 10.8,
|
|
256
256
|
totalDecodedKb: 30.4,
|
|
257
|
-
loadTimeMs:
|
|
257
|
+
loadTimeMs: 93,
|
|
258
258
|
collectsWebVitals: true,
|
|
259
259
|
apis: {
|
|
260
260
|
cookies: false,
|
|
@@ -301,7 +301,7 @@ const cloudflareWebAnalytics = {
|
|
|
301
301
|
"static.cloudflareinsights.com"
|
|
302
302
|
],
|
|
303
303
|
outboundBytes: 0,
|
|
304
|
-
inboundBytes:
|
|
304
|
+
inboundBytes: 11075,
|
|
305
305
|
injectedElements: [
|
|
306
306
|
]
|
|
307
307
|
},
|
|
@@ -316,38 +316,38 @@ const cloudflareWebAnalytics = {
|
|
|
316
316
|
transferKb: 10.8,
|
|
317
317
|
decodedKb: 30.4,
|
|
318
318
|
encoding: "gzip",
|
|
319
|
-
durationMs:
|
|
319
|
+
durationMs: 93,
|
|
320
320
|
initiatorType: "script",
|
|
321
321
|
protocol: "unknown"
|
|
322
322
|
}
|
|
323
323
|
]
|
|
324
324
|
};
|
|
325
325
|
const posthog = {
|
|
326
|
-
totalTransferKb:
|
|
327
|
-
totalDecodedKb:
|
|
328
|
-
loadTimeMs:
|
|
329
|
-
collectsWebVitals:
|
|
326
|
+
totalTransferKb: 132.5,
|
|
327
|
+
totalDecodedKb: 358,
|
|
328
|
+
loadTimeMs: 1514,
|
|
329
|
+
collectsWebVitals: true,
|
|
330
330
|
apis: {
|
|
331
|
-
cookies:
|
|
332
|
-
localStorage:
|
|
333
|
-
sessionStorage:
|
|
331
|
+
cookies: true,
|
|
332
|
+
localStorage: true,
|
|
333
|
+
sessionStorage: true,
|
|
334
334
|
indexedDB: false,
|
|
335
335
|
canvas: false,
|
|
336
336
|
webgl: false,
|
|
337
337
|
audioContext: false,
|
|
338
|
-
userAgent:
|
|
338
|
+
userAgent: true,
|
|
339
339
|
doNotTrack: false,
|
|
340
340
|
hardwareConcurrency: false,
|
|
341
341
|
deviceMemory: false,
|
|
342
342
|
plugins: false,
|
|
343
|
-
languages:
|
|
344
|
-
screen:
|
|
345
|
-
timezone:
|
|
343
|
+
languages: true,
|
|
344
|
+
screen: true,
|
|
345
|
+
timezone: true,
|
|
346
346
|
platform: false,
|
|
347
|
-
vendor:
|
|
347
|
+
vendor: true,
|
|
348
348
|
connection: false,
|
|
349
349
|
maxTouchPoints: false,
|
|
350
|
-
devicePixelRatio:
|
|
350
|
+
devicePixelRatio: true,
|
|
351
351
|
mediaDevices: false,
|
|
352
352
|
getBattery: false,
|
|
353
353
|
referrer: false,
|
|
@@ -356,9 +356,9 @@ const posthog = {
|
|
|
356
356
|
geolocation: false,
|
|
357
357
|
serviceWorker: false,
|
|
358
358
|
cacheApi: false,
|
|
359
|
-
sendBeacon:
|
|
360
|
-
fetch:
|
|
361
|
-
xhr:
|
|
359
|
+
sendBeacon: true,
|
|
360
|
+
fetch: true,
|
|
361
|
+
xhr: true,
|
|
362
362
|
websocket: false,
|
|
363
363
|
mutationObserver: false,
|
|
364
364
|
performanceObserver: false,
|
|
@@ -367,26 +367,72 @@ const posthog = {
|
|
|
367
367
|
cookies: [
|
|
368
368
|
],
|
|
369
369
|
network: {
|
|
370
|
-
requestCount:
|
|
370
|
+
requestCount: 5,
|
|
371
371
|
domains: [
|
|
372
|
+
"us-assets.i.posthog.com",
|
|
373
|
+
"us.i.posthog.com"
|
|
372
374
|
],
|
|
373
|
-
outboundBytes:
|
|
374
|
-
inboundBytes:
|
|
375
|
+
outboundBytes: 269,
|
|
376
|
+
inboundBytes: 135643,
|
|
375
377
|
injectedElements: [
|
|
378
|
+
{
|
|
379
|
+
tag: "script",
|
|
380
|
+
src: "https://us-assets.i.posthog.com/array/phc_test/config.js"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
tag: "script",
|
|
384
|
+
src: "https://us.i.posthog.com/static/array.js"
|
|
385
|
+
}
|
|
376
386
|
]
|
|
377
387
|
},
|
|
378
388
|
performance: {
|
|
379
|
-
taskDurationMs:
|
|
380
|
-
scriptDurationMs:
|
|
381
|
-
heapDeltaKb:
|
|
389
|
+
taskDurationMs: 36,
|
|
390
|
+
scriptDurationMs: 21,
|
|
391
|
+
heapDeltaKb: 1886
|
|
382
392
|
},
|
|
383
393
|
scripts: [
|
|
394
|
+
{
|
|
395
|
+
url: "https://us-assets.i.posthog.com/static/array.js",
|
|
396
|
+
transferKb: 65.9,
|
|
397
|
+
decodedKb: 178.9,
|
|
398
|
+
encoding: "gzip",
|
|
399
|
+
durationMs: 98,
|
|
400
|
+
initiatorType: "script",
|
|
401
|
+
protocol: "unknown"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
url: "https://us.i.posthog.com/static/array.js",
|
|
405
|
+
transferKb: 66,
|
|
406
|
+
decodedKb: 178.9,
|
|
407
|
+
encoding: "gzip",
|
|
408
|
+
durationMs: 1514,
|
|
409
|
+
initiatorType: "script",
|
|
410
|
+
protocol: "unknown"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
url: "https://us-assets.i.posthog.com/array/phc_test/config?ip=0&_=1773925874485&ver=1.361.1",
|
|
414
|
+
transferKb: 0.2,
|
|
415
|
+
decodedKb: 0.1,
|
|
416
|
+
encoding: "gzip",
|
|
417
|
+
durationMs: 261,
|
|
418
|
+
initiatorType: "fetch",
|
|
419
|
+
protocol: "unknown"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
url: "https://us.i.posthog.com/flags/?v=2&ip=0&_=1773925874758&ver=1.361.1&compression=base64",
|
|
423
|
+
transferKb: 0.4,
|
|
424
|
+
decodedKb: 0.1,
|
|
425
|
+
encoding: "gzip",
|
|
426
|
+
durationMs: 908,
|
|
427
|
+
initiatorType: "fetch",
|
|
428
|
+
protocol: "unknown"
|
|
429
|
+
}
|
|
384
430
|
]
|
|
385
431
|
};
|
|
386
432
|
const fathomAnalytics = {
|
|
387
433
|
totalTransferKb: 3,
|
|
388
434
|
totalDecodedKb: 6.7,
|
|
389
|
-
loadTimeMs:
|
|
435
|
+
loadTimeMs: 316,
|
|
390
436
|
collectsWebVitals: false,
|
|
391
437
|
apis: {
|
|
392
438
|
cookies: false,
|
|
@@ -433,7 +479,7 @@ const fathomAnalytics = {
|
|
|
433
479
|
"cdn.usefathom.com"
|
|
434
480
|
],
|
|
435
481
|
outboundBytes: 0,
|
|
436
|
-
inboundBytes:
|
|
482
|
+
inboundBytes: 3077,
|
|
437
483
|
injectedElements: [
|
|
438
484
|
]
|
|
439
485
|
},
|
|
@@ -448,16 +494,16 @@ const fathomAnalytics = {
|
|
|
448
494
|
transferKb: 2.7,
|
|
449
495
|
decodedKb: 6.7,
|
|
450
496
|
encoding: "zstd",
|
|
451
|
-
durationMs:
|
|
497
|
+
durationMs: 73,
|
|
452
498
|
initiatorType: "script",
|
|
453
499
|
protocol: "unknown"
|
|
454
500
|
},
|
|
455
501
|
{
|
|
456
|
-
url: "https://cdn.usefathom.com/?h=http%3A%2F%2F127.0.0.1&p=%2FfathomAnalytics&r=&sid=null&qs=%7B%7D&cid=
|
|
502
|
+
url: "https://cdn.usefathom.com/?h=http%3A%2F%2F127.0.0.1&p=%2FfathomAnalytics&r=&sid=null&qs=%7B%7D&cid=95566347",
|
|
457
503
|
transferKb: 0.3,
|
|
458
504
|
decodedKb: 0,
|
|
459
505
|
encoding: "none",
|
|
460
|
-
durationMs:
|
|
506
|
+
durationMs: 316,
|
|
461
507
|
initiatorType: "img",
|
|
462
508
|
protocol: "unknown"
|
|
463
509
|
}
|
|
@@ -466,7 +512,7 @@ const fathomAnalytics = {
|
|
|
466
512
|
const matomoAnalytics = {
|
|
467
513
|
totalTransferKb: 60.4,
|
|
468
514
|
totalDecodedKb: 218.6,
|
|
469
|
-
loadTimeMs:
|
|
515
|
+
loadTimeMs: 96,
|
|
470
516
|
collectsWebVitals: false,
|
|
471
517
|
apis: {
|
|
472
518
|
cookies: true,
|
|
@@ -513,14 +559,14 @@ const matomoAnalytics = {
|
|
|
513
559
|
"cdn.matomo.cloud"
|
|
514
560
|
],
|
|
515
561
|
outboundBytes: 0,
|
|
516
|
-
inboundBytes:
|
|
562
|
+
inboundBytes: 61877,
|
|
517
563
|
injectedElements: [
|
|
518
564
|
]
|
|
519
565
|
},
|
|
520
566
|
performance: {
|
|
521
|
-
taskDurationMs:
|
|
567
|
+
taskDurationMs: 18,
|
|
522
568
|
scriptDurationMs: 5,
|
|
523
|
-
heapDeltaKb:
|
|
569
|
+
heapDeltaKb: 1393
|
|
524
570
|
},
|
|
525
571
|
scripts: [
|
|
526
572
|
{
|
|
@@ -528,7 +574,7 @@ const matomoAnalytics = {
|
|
|
528
574
|
transferKb: 60.4,
|
|
529
575
|
decodedKb: 218.6,
|
|
530
576
|
encoding: "br",
|
|
531
|
-
durationMs:
|
|
577
|
+
durationMs: 96,
|
|
532
578
|
initiatorType: "script",
|
|
533
579
|
protocol: "unknown"
|
|
534
580
|
}
|
|
@@ -537,7 +583,7 @@ const matomoAnalytics = {
|
|
|
537
583
|
const rybbitAnalytics = {
|
|
538
584
|
totalTransferKb: 9,
|
|
539
585
|
totalDecodedKb: 25.4,
|
|
540
|
-
loadTimeMs:
|
|
586
|
+
loadTimeMs: 1154,
|
|
541
587
|
collectsWebVitals: true,
|
|
542
588
|
apis: {
|
|
543
589
|
cookies: false,
|
|
@@ -589,8 +635,8 @@ const rybbitAnalytics = {
|
|
|
589
635
|
]
|
|
590
636
|
},
|
|
591
637
|
performance: {
|
|
592
|
-
taskDurationMs:
|
|
593
|
-
scriptDurationMs:
|
|
638
|
+
taskDurationMs: 7,
|
|
639
|
+
scriptDurationMs: 1,
|
|
594
640
|
heapDeltaKb: 755
|
|
595
641
|
},
|
|
596
642
|
scripts: [
|
|
@@ -599,7 +645,7 @@ const rybbitAnalytics = {
|
|
|
599
645
|
transferKb: 9,
|
|
600
646
|
decodedKb: 25.4,
|
|
601
647
|
encoding: "zstd",
|
|
602
|
-
durationMs:
|
|
648
|
+
durationMs: 1154,
|
|
603
649
|
initiatorType: "script",
|
|
604
650
|
protocol: "unknown"
|
|
605
651
|
}
|
|
@@ -608,7 +654,7 @@ const rybbitAnalytics = {
|
|
|
608
654
|
const databuddyAnalytics = {
|
|
609
655
|
totalTransferKb: 10.6,
|
|
610
656
|
totalDecodedKb: 29.2,
|
|
611
|
-
loadTimeMs:
|
|
657
|
+
loadTimeMs: 76,
|
|
612
658
|
collectsWebVitals: true,
|
|
613
659
|
apis: {
|
|
614
660
|
cookies: false,
|
|
@@ -660,7 +706,7 @@ const databuddyAnalytics = {
|
|
|
660
706
|
]
|
|
661
707
|
},
|
|
662
708
|
performance: {
|
|
663
|
-
taskDurationMs:
|
|
709
|
+
taskDurationMs: 6,
|
|
664
710
|
scriptDurationMs: 1,
|
|
665
711
|
heapDeltaKb: 803
|
|
666
712
|
},
|
|
@@ -670,7 +716,7 @@ const databuddyAnalytics = {
|
|
|
670
716
|
transferKb: 10.6,
|
|
671
717
|
decodedKb: 29.2,
|
|
672
718
|
encoding: "zstd",
|
|
673
|
-
durationMs:
|
|
719
|
+
durationMs: 76,
|
|
674
720
|
initiatorType: "script",
|
|
675
721
|
protocol: "unknown"
|
|
676
722
|
}
|
|
@@ -679,7 +725,7 @@ const databuddyAnalytics = {
|
|
|
679
725
|
const mixpanelAnalytics = {
|
|
680
726
|
totalTransferKb: 31,
|
|
681
727
|
totalDecodedKb: 93.9,
|
|
682
|
-
loadTimeMs:
|
|
728
|
+
loadTimeMs: 66,
|
|
683
729
|
collectsWebVitals: false,
|
|
684
730
|
apis: {
|
|
685
731
|
cookies: true,
|
|
@@ -726,13 +772,13 @@ const mixpanelAnalytics = {
|
|
|
726
772
|
"cdn.mxpnl.com"
|
|
727
773
|
],
|
|
728
774
|
outboundBytes: 0,
|
|
729
|
-
inboundBytes:
|
|
775
|
+
inboundBytes: 31793,
|
|
730
776
|
injectedElements: [
|
|
731
777
|
]
|
|
732
778
|
},
|
|
733
779
|
performance: {
|
|
734
|
-
taskDurationMs:
|
|
735
|
-
scriptDurationMs:
|
|
780
|
+
taskDurationMs: 12,
|
|
781
|
+
scriptDurationMs: 6,
|
|
736
782
|
heapDeltaKb: 1167
|
|
737
783
|
},
|
|
738
784
|
scripts: [
|
|
@@ -741,7 +787,7 @@ const mixpanelAnalytics = {
|
|
|
741
787
|
transferKb: 31,
|
|
742
788
|
decodedKb: 93.9,
|
|
743
789
|
encoding: "gzip",
|
|
744
|
-
durationMs:
|
|
790
|
+
durationMs: 66,
|
|
745
791
|
initiatorType: "script",
|
|
746
792
|
protocol: "unknown"
|
|
747
793
|
}
|
|
@@ -750,7 +796,7 @@ const mixpanelAnalytics = {
|
|
|
750
796
|
const segment = {
|
|
751
797
|
totalTransferKb: 29.6,
|
|
752
798
|
totalDecodedKb: 107,
|
|
753
|
-
loadTimeMs:
|
|
799
|
+
loadTimeMs: 772,
|
|
754
800
|
collectsWebVitals: false,
|
|
755
801
|
apis: {
|
|
756
802
|
cookies: true,
|
|
@@ -798,13 +844,13 @@ const segment = {
|
|
|
798
844
|
"cdn.segment.com"
|
|
799
845
|
],
|
|
800
846
|
outboundBytes: 1006,
|
|
801
|
-
inboundBytes:
|
|
847
|
+
inboundBytes: 30283,
|
|
802
848
|
injectedElements: [
|
|
803
849
|
]
|
|
804
850
|
},
|
|
805
851
|
performance: {
|
|
806
|
-
taskDurationMs:
|
|
807
|
-
scriptDurationMs:
|
|
852
|
+
taskDurationMs: 19,
|
|
853
|
+
scriptDurationMs: 4,
|
|
808
854
|
heapDeltaKb: 1328
|
|
809
855
|
},
|
|
810
856
|
scripts: [
|
|
@@ -813,7 +859,7 @@ const segment = {
|
|
|
813
859
|
transferKb: 28.2,
|
|
814
860
|
decodedKb: 106.4,
|
|
815
861
|
encoding: "br",
|
|
816
|
-
durationMs:
|
|
862
|
+
durationMs: 551,
|
|
817
863
|
initiatorType: "script",
|
|
818
864
|
protocol: "unknown"
|
|
819
865
|
},
|
|
@@ -822,7 +868,7 @@ const segment = {
|
|
|
822
868
|
transferKb: 1.2,
|
|
823
869
|
decodedKb: 0.6,
|
|
824
870
|
encoding: "none",
|
|
825
|
-
durationMs:
|
|
871
|
+
durationMs: 58,
|
|
826
872
|
initiatorType: "fetch",
|
|
827
873
|
protocol: "unknown"
|
|
828
874
|
},
|
|
@@ -831,7 +877,7 @@ const segment = {
|
|
|
831
877
|
transferKb: 0.2,
|
|
832
878
|
decodedKb: 0,
|
|
833
879
|
encoding: "none",
|
|
834
|
-
durationMs:
|
|
880
|
+
durationMs: 772,
|
|
835
881
|
initiatorType: "fetch",
|
|
836
882
|
protocol: "unknown"
|
|
837
883
|
}
|
|
@@ -840,7 +886,7 @@ const segment = {
|
|
|
840
886
|
const googleAnalytics = {
|
|
841
887
|
totalTransferKb: 154.2,
|
|
842
888
|
totalDecodedKb: 454.1,
|
|
843
|
-
loadTimeMs:
|
|
889
|
+
loadTimeMs: 516,
|
|
844
890
|
collectsWebVitals: false,
|
|
845
891
|
apis: {
|
|
846
892
|
cookies: true,
|
|
@@ -893,8 +939,8 @@ const googleAnalytics = {
|
|
|
893
939
|
},
|
|
894
940
|
performance: {
|
|
895
941
|
taskDurationMs: 26,
|
|
896
|
-
scriptDurationMs:
|
|
897
|
-
heapDeltaKb:
|
|
942
|
+
scriptDurationMs: 15,
|
|
943
|
+
heapDeltaKb: 2593
|
|
898
944
|
},
|
|
899
945
|
scripts: [
|
|
900
946
|
{
|
|
@@ -902,7 +948,7 @@ const googleAnalytics = {
|
|
|
902
948
|
transferKb: 154.2,
|
|
903
949
|
decodedKb: 454.1,
|
|
904
950
|
encoding: "zstd",
|
|
905
|
-
durationMs:
|
|
951
|
+
durationMs: 516,
|
|
906
952
|
initiatorType: "script",
|
|
907
953
|
protocol: "unknown"
|
|
908
954
|
}
|
|
@@ -911,7 +957,7 @@ const googleAnalytics = {
|
|
|
911
957
|
const umamiAnalytics = {
|
|
912
958
|
totalTransferKb: 2.4,
|
|
913
959
|
totalDecodedKb: 2.6,
|
|
914
|
-
loadTimeMs:
|
|
960
|
+
loadTimeMs: 81,
|
|
915
961
|
collectsWebVitals: false,
|
|
916
962
|
apis: {
|
|
917
963
|
cookies: false,
|
|
@@ -958,14 +1004,14 @@ const umamiAnalytics = {
|
|
|
958
1004
|
"cloud.umami.is"
|
|
959
1005
|
],
|
|
960
1006
|
outboundBytes: 0,
|
|
961
|
-
inboundBytes:
|
|
1007
|
+
inboundBytes: 2468,
|
|
962
1008
|
injectedElements: [
|
|
963
1009
|
]
|
|
964
1010
|
},
|
|
965
1011
|
performance: {
|
|
966
|
-
taskDurationMs:
|
|
1012
|
+
taskDurationMs: 5,
|
|
967
1013
|
scriptDurationMs: 0,
|
|
968
|
-
heapDeltaKb:
|
|
1014
|
+
heapDeltaKb: 725
|
|
969
1015
|
},
|
|
970
1016
|
scripts: [
|
|
971
1017
|
{
|
|
@@ -973,7 +1019,7 @@ const umamiAnalytics = {
|
|
|
973
1019
|
transferKb: 2.4,
|
|
974
1020
|
decodedKb: 2.6,
|
|
975
1021
|
encoding: "br",
|
|
976
|
-
durationMs:
|
|
1022
|
+
durationMs: 81,
|
|
977
1023
|
initiatorType: "script",
|
|
978
1024
|
protocol: "unknown"
|
|
979
1025
|
}
|
|
@@ -982,7 +1028,7 @@ const umamiAnalytics = {
|
|
|
982
1028
|
const vercelAnalytics = {
|
|
983
1029
|
totalTransferKb: 1.6,
|
|
984
1030
|
totalDecodedKb: 2.4,
|
|
985
|
-
loadTimeMs:
|
|
1031
|
+
loadTimeMs: 81,
|
|
986
1032
|
collectsWebVitals: false,
|
|
987
1033
|
apis: {
|
|
988
1034
|
cookies: false,
|
|
@@ -1044,7 +1090,7 @@ const vercelAnalytics = {
|
|
|
1044
1090
|
transferKb: 1.6,
|
|
1045
1091
|
decodedKb: 2.4,
|
|
1046
1092
|
encoding: "br",
|
|
1047
|
-
durationMs:
|
|
1093
|
+
durationMs: 81,
|
|
1048
1094
|
initiatorType: "script",
|
|
1049
1095
|
protocol: "unknown"
|
|
1050
1096
|
}
|
|
@@ -1053,7 +1099,7 @@ const vercelAnalytics = {
|
|
|
1053
1099
|
const bingUet = {
|
|
1054
1100
|
totalTransferKb: 16.2,
|
|
1055
1101
|
totalDecodedKb: 54,
|
|
1056
|
-
loadTimeMs:
|
|
1102
|
+
loadTimeMs: 207,
|
|
1057
1103
|
collectsWebVitals: false,
|
|
1058
1104
|
apis: {
|
|
1059
1105
|
cookies: true,
|
|
@@ -1122,7 +1168,7 @@ const bingUet = {
|
|
|
1122
1168
|
"bat.bing.com"
|
|
1123
1169
|
],
|
|
1124
1170
|
outboundBytes: 0,
|
|
1125
|
-
inboundBytes:
|
|
1171
|
+
inboundBytes: 16545,
|
|
1126
1172
|
injectedElements: [
|
|
1127
1173
|
{
|
|
1128
1174
|
tag: "script",
|
|
@@ -1130,14 +1176,14 @@ const bingUet = {
|
|
|
1130
1176
|
},
|
|
1131
1177
|
{
|
|
1132
1178
|
tag: "img",
|
|
1133
|
-
src: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=
|
|
1179
|
+
src: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=7a9bdab7-4d77-4f32-b498-848d8200a897&bo=1&sid=3a3e3280239511f1bc041d004afba8b8&vid=3a3e5040239511f1a83b357b18badf3c&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%3A34289%2FbingUet&r=<=213&evt=pageLoad&sv=2&cdb=AQAQ&rn=134697"
|
|
1134
1180
|
}
|
|
1135
1181
|
]
|
|
1136
1182
|
},
|
|
1137
1183
|
performance: {
|
|
1138
|
-
taskDurationMs:
|
|
1184
|
+
taskDurationMs: 11,
|
|
1139
1185
|
scriptDurationMs: 4,
|
|
1140
|
-
heapDeltaKb:
|
|
1186
|
+
heapDeltaKb: 919
|
|
1141
1187
|
},
|
|
1142
1188
|
scripts: [
|
|
1143
1189
|
{
|
|
@@ -1145,7 +1191,7 @@ const bingUet = {
|
|
|
1145
1191
|
transferKb: 15.4,
|
|
1146
1192
|
decodedKb: 53.6,
|
|
1147
1193
|
encoding: "gzip",
|
|
1148
|
-
durationMs:
|
|
1194
|
+
durationMs: 207,
|
|
1149
1195
|
initiatorType: "script",
|
|
1150
1196
|
protocol: "unknown"
|
|
1151
1197
|
},
|
|
@@ -1154,16 +1200,16 @@ const bingUet = {
|
|
|
1154
1200
|
transferKb: 0.4,
|
|
1155
1201
|
decodedKb: 0.4,
|
|
1156
1202
|
encoding: "br",
|
|
1157
|
-
durationMs:
|
|
1203
|
+
durationMs: 148,
|
|
1158
1204
|
initiatorType: "script",
|
|
1159
1205
|
protocol: "unknown"
|
|
1160
1206
|
},
|
|
1161
1207
|
{
|
|
1162
|
-
url: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=
|
|
1208
|
+
url: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=7a9bdab7-4d77-4f32-b498-848d8200a897&bo=1&sid=3a3e3280239511f1bc041d004afba8b8&vid=3a3e5040239511f1a83b357b18badf3c&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%3A34289%2FbingUet&r=<=213&evt=pageLoad&sv=2&cdb=AQAQ&rn=134697",
|
|
1163
1209
|
transferKb: 0.4,
|
|
1164
1210
|
decodedKb: 0,
|
|
1165
1211
|
encoding: "none",
|
|
1166
|
-
durationMs:
|
|
1212
|
+
durationMs: 150,
|
|
1167
1213
|
initiatorType: "img",
|
|
1168
1214
|
protocol: "unknown"
|
|
1169
1215
|
}
|
|
@@ -1172,7 +1218,7 @@ const bingUet = {
|
|
|
1172
1218
|
const metaPixel = {
|
|
1173
1219
|
totalTransferKb: 97.1,
|
|
1174
1220
|
totalDecodedKb: 364.7,
|
|
1175
|
-
loadTimeMs:
|
|
1221
|
+
loadTimeMs: 232,
|
|
1176
1222
|
collectsWebVitals: false,
|
|
1177
1223
|
apis: {
|
|
1178
1224
|
cookies: false,
|
|
@@ -1220,7 +1266,7 @@ const metaPixel = {
|
|
|
1220
1266
|
"www.facebook.com"
|
|
1221
1267
|
],
|
|
1222
1268
|
outboundBytes: 0,
|
|
1223
|
-
inboundBytes:
|
|
1269
|
+
inboundBytes: 102421,
|
|
1224
1270
|
injectedElements: [
|
|
1225
1271
|
{
|
|
1226
1272
|
tag: "script",
|
|
@@ -1228,14 +1274,14 @@ const metaPixel = {
|
|
|
1228
1274
|
},
|
|
1229
1275
|
{
|
|
1230
1276
|
tag: "img",
|
|
1231
|
-
src: "https://www.facebook.com/tr/?id=3925006&ev=PageView&dl=http%3A%2F%2F127.0.0.1%
|
|
1277
|
+
src: "https://www.facebook.com/tr/?id=3925006&ev=PageView&dl=http%3A%2F%2F127.0.0.1%3A34289%2FmetaPixel&rl=&if=false&ts=1773925931003&sw=1280&sh=720&v=2.9.280&r=stable&ec=0&o=156&it=1773925930767&coo=false&expv2[0]=pl1&expv2[1]=el2&expv2[2]=bc1&expv2[3]=ra0&expv2[4]=rp0&expv2[5]=im1&expv2[6]=hf1&rqm=GET"
|
|
1232
1278
|
}
|
|
1233
1279
|
]
|
|
1234
1280
|
},
|
|
1235
1281
|
performance: {
|
|
1236
|
-
taskDurationMs:
|
|
1237
|
-
scriptDurationMs:
|
|
1238
|
-
heapDeltaKb:
|
|
1282
|
+
taskDurationMs: 31,
|
|
1283
|
+
scriptDurationMs: 20,
|
|
1284
|
+
heapDeltaKb: 1949
|
|
1239
1285
|
},
|
|
1240
1286
|
scripts: [
|
|
1241
1287
|
{
|
|
@@ -1243,7 +1289,7 @@ const metaPixel = {
|
|
|
1243
1289
|
transferKb: 94.7,
|
|
1244
1290
|
decodedKb: 356.5,
|
|
1245
1291
|
encoding: "gzip",
|
|
1246
|
-
durationMs:
|
|
1292
|
+
durationMs: 122,
|
|
1247
1293
|
initiatorType: "script",
|
|
1248
1294
|
protocol: "h2"
|
|
1249
1295
|
},
|
|
@@ -1252,16 +1298,16 @@ const metaPixel = {
|
|
|
1252
1298
|
transferKb: 2.1,
|
|
1253
1299
|
decodedKb: 8.2,
|
|
1254
1300
|
encoding: "gzip",
|
|
1255
|
-
durationMs:
|
|
1301
|
+
durationMs: 232,
|
|
1256
1302
|
initiatorType: "script",
|
|
1257
1303
|
protocol: "h2"
|
|
1258
1304
|
},
|
|
1259
1305
|
{
|
|
1260
|
-
url: "https://www.facebook.com/tr/?id=3925006&ev=PageView&dl=http%3A%2F%2F127.0.0.1%
|
|
1306
|
+
url: "https://www.facebook.com/tr/?id=3925006&ev=PageView&dl=http%3A%2F%2F127.0.0.1%3A34289%2FmetaPixel&rl=&if=false&ts=1773925931003&sw=1280&sh=720&v=2.9.280&r=stable&ec=0&o=156&it=1773925930767&coo=false&expv2[0]=pl1&expv2[1]=el2&expv2[2]=bc1&expv2[3]=ra0&expv2[4]=rp0&expv2[5]=im1&expv2[6]=hf1&rqm=GET",
|
|
1261
1307
|
transferKb: 0.3,
|
|
1262
1308
|
decodedKb: 0,
|
|
1263
1309
|
encoding: "none",
|
|
1264
|
-
durationMs:
|
|
1310
|
+
durationMs: 66,
|
|
1265
1311
|
initiatorType: "img",
|
|
1266
1312
|
protocol: "unknown"
|
|
1267
1313
|
}
|
|
@@ -1270,7 +1316,7 @@ const metaPixel = {
|
|
|
1270
1316
|
const xPixel = {
|
|
1271
1317
|
totalTransferKb: 15.1,
|
|
1272
1318
|
totalDecodedKb: 47.1,
|
|
1273
|
-
loadTimeMs:
|
|
1319
|
+
loadTimeMs: 244,
|
|
1274
1320
|
collectsWebVitals: false,
|
|
1275
1321
|
apis: {
|
|
1276
1322
|
cookies: true,
|
|
@@ -1374,20 +1420,20 @@ const xPixel = {
|
|
|
1374
1420
|
"t.co"
|
|
1375
1421
|
],
|
|
1376
1422
|
outboundBytes: 0,
|
|
1377
|
-
inboundBytes:
|
|
1423
|
+
inboundBytes: 15448,
|
|
1378
1424
|
injectedElements: [
|
|
1379
1425
|
{
|
|
1380
1426
|
tag: "img",
|
|
1381
|
-
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=
|
|
1427
|
+
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=0dd7a522-b52f-4df6-ad0c-3e8267168de4&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=4fa6174e-7802-4a87-91ab-999c3b670981&tw_document_href=http%3A%2F%2F127.0.0.1%3A34289%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773925936211.218994066508596888&txn_id=ol7lz&type=javascript&version=2.3.50"
|
|
1382
1428
|
},
|
|
1383
1429
|
{
|
|
1384
1430
|
tag: "img",
|
|
1385
|
-
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=
|
|
1431
|
+
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=0dd7a522-b52f-4df6-ad0c-3e8267168de4&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=4fa6174e-7802-4a87-91ab-999c3b670981&tw_document_href=http%3A%2F%2F127.0.0.1%3A34289%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773925936211.218994066508596888&txn_id=ol7lz&type=javascript&version=2.3.50"
|
|
1386
1432
|
}
|
|
1387
1433
|
]
|
|
1388
1434
|
},
|
|
1389
1435
|
performance: {
|
|
1390
|
-
taskDurationMs:
|
|
1436
|
+
taskDurationMs: 15,
|
|
1391
1437
|
scriptDurationMs: 2,
|
|
1392
1438
|
heapDeltaKb: 1035
|
|
1393
1439
|
},
|
|
@@ -1397,25 +1443,25 @@ const xPixel = {
|
|
|
1397
1443
|
transferKb: 13.5,
|
|
1398
1444
|
decodedKb: 47.1,
|
|
1399
1445
|
encoding: "gzip",
|
|
1400
|
-
durationMs:
|
|
1446
|
+
durationMs: 70,
|
|
1401
1447
|
initiatorType: "script",
|
|
1402
1448
|
protocol: "unknown"
|
|
1403
1449
|
},
|
|
1404
1450
|
{
|
|
1405
|
-
url: "https://
|
|
1406
|
-
transferKb:
|
|
1451
|
+
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=0dd7a522-b52f-4df6-ad0c-3e8267168de4&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=4fa6174e-7802-4a87-91ab-999c3b670981&tw_document_href=http%3A%2F%2F127.0.0.1%3A34289%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773925936211.218994066508596888&txn_id=ol7lz&type=javascript&version=2.3.50",
|
|
1452
|
+
transferKb: 1,
|
|
1407
1453
|
decodedKb: 0,
|
|
1408
1454
|
encoding: "none",
|
|
1409
|
-
durationMs:
|
|
1455
|
+
durationMs: 230,
|
|
1410
1456
|
initiatorType: "img",
|
|
1411
1457
|
protocol: "unknown"
|
|
1412
1458
|
},
|
|
1413
1459
|
{
|
|
1414
|
-
url: "https://
|
|
1415
|
-
transferKb:
|
|
1460
|
+
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=0dd7a522-b52f-4df6-ad0c-3e8267168de4&integration=advertiser&p_id=Twitter&p_user_id=0&pl_id=4fa6174e-7802-4a87-91ab-999c3b670981&tw_document_href=http%3A%2F%2F127.0.0.1%3A34289%2FxPixel&tw_iframe_status=0&tw_pid_src=1&twpid=tw.1773925936211.218994066508596888&txn_id=ol7lz&type=javascript&version=2.3.50",
|
|
1461
|
+
transferKb: 0.6,
|
|
1416
1462
|
decodedKb: 0,
|
|
1417
1463
|
encoding: "none",
|
|
1418
|
-
durationMs:
|
|
1464
|
+
durationMs: 244,
|
|
1419
1465
|
initiatorType: "img",
|
|
1420
1466
|
protocol: "unknown"
|
|
1421
1467
|
}
|
|
@@ -1424,7 +1470,7 @@ const xPixel = {
|
|
|
1424
1470
|
const tiktokPixel = {
|
|
1425
1471
|
totalTransferKb: 1889.6,
|
|
1426
1472
|
totalDecodedKb: 2365,
|
|
1427
|
-
loadTimeMs:
|
|
1473
|
+
loadTimeMs: 270,
|
|
1428
1474
|
collectsWebVitals: true,
|
|
1429
1475
|
apis: {
|
|
1430
1476
|
cookies: true,
|
|
@@ -1495,7 +1541,7 @@ const tiktokPixel = {
|
|
|
1495
1541
|
]
|
|
1496
1542
|
},
|
|
1497
1543
|
performance: {
|
|
1498
|
-
taskDurationMs:
|
|
1544
|
+
taskDurationMs: 50,
|
|
1499
1545
|
scriptDurationMs: 25,
|
|
1500
1546
|
heapDeltaKb: 2297
|
|
1501
1547
|
},
|
|
@@ -1505,7 +1551,7 @@ const tiktokPixel = {
|
|
|
1505
1551
|
transferKb: 2.6,
|
|
1506
1552
|
decodedKb: 7.6,
|
|
1507
1553
|
encoding: "gzip",
|
|
1508
|
-
durationMs:
|
|
1554
|
+
durationMs: 270,
|
|
1509
1555
|
initiatorType: "script",
|
|
1510
1556
|
protocol: "unknown"
|
|
1511
1557
|
},
|
|
@@ -1514,7 +1560,7 @@ const tiktokPixel = {
|
|
|
1514
1560
|
transferKb: 105.8,
|
|
1515
1561
|
decodedKb: 463.4,
|
|
1516
1562
|
encoding: "gzip",
|
|
1517
|
-
durationMs:
|
|
1563
|
+
durationMs: 50,
|
|
1518
1564
|
initiatorType: "script",
|
|
1519
1565
|
protocol: "unknown"
|
|
1520
1566
|
},
|
|
@@ -1523,7 +1569,7 @@ const tiktokPixel = {
|
|
|
1523
1569
|
transferKb: 39.5,
|
|
1524
1570
|
decodedKb: 152,
|
|
1525
1571
|
encoding: "gzip",
|
|
1526
|
-
durationMs:
|
|
1572
|
+
durationMs: 20,
|
|
1527
1573
|
initiatorType: "script",
|
|
1528
1574
|
protocol: "unknown"
|
|
1529
1575
|
},
|
|
@@ -1550,7 +1596,7 @@ const tiktokPixel = {
|
|
|
1550
1596
|
const snapchatPixel = {
|
|
1551
1597
|
totalTransferKb: 1.3,
|
|
1552
1598
|
totalDecodedKb: 58.2,
|
|
1553
|
-
loadTimeMs:
|
|
1599
|
+
loadTimeMs: 579,
|
|
1554
1600
|
collectsWebVitals: false,
|
|
1555
1601
|
apis: {
|
|
1556
1602
|
cookies: true,
|
|
@@ -1602,18 +1648,18 @@ const snapchatPixel = {
|
|
|
1602
1648
|
firstParty: false
|
|
1603
1649
|
},
|
|
1604
1650
|
{
|
|
1605
|
-
name: "
|
|
1606
|
-
domain: ".
|
|
1651
|
+
name: "sc_at",
|
|
1652
|
+
domain: ".snapchat.com",
|
|
1607
1653
|
path: "/",
|
|
1608
1654
|
httpOnly: false,
|
|
1609
1655
|
secure: true,
|
|
1610
1656
|
sameSite: "None",
|
|
1611
1657
|
session: false,
|
|
1612
|
-
lifetimeDays:
|
|
1658
|
+
lifetimeDays: 390,
|
|
1613
1659
|
firstParty: false
|
|
1614
1660
|
},
|
|
1615
1661
|
{
|
|
1616
|
-
name: "
|
|
1662
|
+
name: "TapAd_TS",
|
|
1617
1663
|
domain: ".tapad.com",
|
|
1618
1664
|
path: "/",
|
|
1619
1665
|
httpOnly: false,
|
|
@@ -1624,7 +1670,7 @@ const snapchatPixel = {
|
|
|
1624
1670
|
firstParty: false
|
|
1625
1671
|
},
|
|
1626
1672
|
{
|
|
1627
|
-
name: "
|
|
1673
|
+
name: "TapAd_DID",
|
|
1628
1674
|
domain: ".tapad.com",
|
|
1629
1675
|
path: "/",
|
|
1630
1676
|
httpOnly: false,
|
|
@@ -1635,14 +1681,14 @@ const snapchatPixel = {
|
|
|
1635
1681
|
firstParty: false
|
|
1636
1682
|
},
|
|
1637
1683
|
{
|
|
1638
|
-
name: "
|
|
1639
|
-
domain: ".
|
|
1684
|
+
name: "TapAd_3WAY_SYNCS",
|
|
1685
|
+
domain: ".tapad.com",
|
|
1640
1686
|
path: "/",
|
|
1641
1687
|
httpOnly: false,
|
|
1642
1688
|
secure: true,
|
|
1643
1689
|
sameSite: "None",
|
|
1644
1690
|
session: false,
|
|
1645
|
-
lifetimeDays:
|
|
1691
|
+
lifetimeDays: 60,
|
|
1646
1692
|
firstParty: false
|
|
1647
1693
|
}
|
|
1648
1694
|
],
|
|
@@ -1653,15 +1699,15 @@ const snapchatPixel = {
|
|
|
1653
1699
|
"sc-static.net",
|
|
1654
1700
|
"tr.snapchat.com"
|
|
1655
1701
|
],
|
|
1656
|
-
outboundBytes:
|
|
1657
|
-
inboundBytes:
|
|
1702
|
+
outboundBytes: 3041,
|
|
1703
|
+
inboundBytes: 26692,
|
|
1658
1704
|
injectedElements: [
|
|
1659
1705
|
]
|
|
1660
1706
|
},
|
|
1661
1707
|
performance: {
|
|
1662
|
-
taskDurationMs:
|
|
1663
|
-
scriptDurationMs:
|
|
1664
|
-
heapDeltaKb:
|
|
1708
|
+
taskDurationMs: 40,
|
|
1709
|
+
scriptDurationMs: 25,
|
|
1710
|
+
heapDeltaKb: 2476
|
|
1665
1711
|
},
|
|
1666
1712
|
scripts: [
|
|
1667
1713
|
{
|
|
@@ -1669,7 +1715,7 @@ const snapchatPixel = {
|
|
|
1669
1715
|
transferKb: 0,
|
|
1670
1716
|
decodedKb: 57.4,
|
|
1671
1717
|
encoding: "gzip",
|
|
1672
|
-
durationMs:
|
|
1718
|
+
durationMs: 579,
|
|
1673
1719
|
initiatorType: "script",
|
|
1674
1720
|
protocol: "unknown"
|
|
1675
1721
|
},
|
|
@@ -1678,16 +1724,16 @@ const snapchatPixel = {
|
|
|
1678
1724
|
transferKb: 0.3,
|
|
1679
1725
|
decodedKb: 0.1,
|
|
1680
1726
|
encoding: "none",
|
|
1681
|
-
durationMs:
|
|
1727
|
+
durationMs: 396,
|
|
1682
1728
|
initiatorType: "fetch",
|
|
1683
1729
|
protocol: "unknown"
|
|
1684
1730
|
},
|
|
1685
1731
|
{
|
|
1686
|
-
url: "https://tr.snapchat.com/cm/i?pid=2295cbcc-cb3f-4727-8c09-1133b742722c&u_scsid=
|
|
1732
|
+
url: "https://tr.snapchat.com/cm/i?pid=2295cbcc-cb3f-4727-8c09-1133b742722c&u_scsid=8f048205-5fb8-4c6c-98ea-2992ed17b098&u_sclid=26c261d8-bcad-4186-a3be-fcbce2f60474",
|
|
1687
1733
|
transferKb: 1,
|
|
1688
1734
|
decodedKb: 0.7,
|
|
1689
1735
|
encoding: "none",
|
|
1690
|
-
durationMs:
|
|
1736
|
+
durationMs: 183,
|
|
1691
1737
|
initiatorType: "iframe",
|
|
1692
1738
|
protocol: "unknown"
|
|
1693
1739
|
},
|
|
@@ -1696,7 +1742,7 @@ const snapchatPixel = {
|
|
|
1696
1742
|
transferKb: 0,
|
|
1697
1743
|
decodedKb: 0,
|
|
1698
1744
|
encoding: "none",
|
|
1699
|
-
durationMs:
|
|
1745
|
+
durationMs: 116,
|
|
1700
1746
|
initiatorType: "beacon",
|
|
1701
1747
|
protocol: "unknown"
|
|
1702
1748
|
}
|
|
@@ -1705,7 +1751,7 @@ const snapchatPixel = {
|
|
|
1705
1751
|
const redditPixel = {
|
|
1706
1752
|
totalTransferKb: 19.5,
|
|
1707
1753
|
totalDecodedKb: 65.3,
|
|
1708
|
-
loadTimeMs:
|
|
1754
|
+
loadTimeMs: 319,
|
|
1709
1755
|
collectsWebVitals: false,
|
|
1710
1756
|
apis: {
|
|
1711
1757
|
cookies: true,
|
|
@@ -1758,13 +1804,13 @@ const redditPixel = {
|
|
|
1758
1804
|
injectedElements: [
|
|
1759
1805
|
{
|
|
1760
1806
|
tag: "img",
|
|
1761
|
-
src: "https://alb.reddit.com/rp.gif?ts=
|
|
1807
|
+
src: "https://alb.reddit.com/rp.gif?ts=1773925952972&id=a2_ilz4u0kbdr3v&event=PageVisit&m.itemCount=&m.value=&m.valueDecimal=&m.currency=&m.transactionId=&m.customEventName=&m.products=&m.conversionId=&uuid=feae778e-0f4b-41f7-a5fa-840388c4cbc4&aaid=&em=&pn=&external_id=&idfa=&integration=reddit&partner=&partner_version=&opt_out=0&sh=1280&sw=720&v=rdt_79aa2193&dpm=&dpcc=&dprc="
|
|
1762
1808
|
}
|
|
1763
1809
|
]
|
|
1764
1810
|
},
|
|
1765
1811
|
performance: {
|
|
1766
|
-
taskDurationMs:
|
|
1767
|
-
scriptDurationMs:
|
|
1812
|
+
taskDurationMs: 16,
|
|
1813
|
+
scriptDurationMs: 8,
|
|
1768
1814
|
heapDeltaKb: 965
|
|
1769
1815
|
},
|
|
1770
1816
|
scripts: [
|
|
@@ -1773,7 +1819,7 @@ const redditPixel = {
|
|
|
1773
1819
|
transferKb: 18.8,
|
|
1774
1820
|
decodedKb: 65.3,
|
|
1775
1821
|
encoding: "gzip",
|
|
1776
|
-
durationMs:
|
|
1822
|
+
durationMs: 105,
|
|
1777
1823
|
initiatorType: "script",
|
|
1778
1824
|
protocol: "unknown"
|
|
1779
1825
|
},
|
|
@@ -1782,16 +1828,16 @@ const redditPixel = {
|
|
|
1782
1828
|
transferKb: 0.1,
|
|
1783
1829
|
decodedKb: 0,
|
|
1784
1830
|
encoding: "gzip",
|
|
1785
|
-
durationMs:
|
|
1831
|
+
durationMs: 106,
|
|
1786
1832
|
initiatorType: "xmlhttprequest",
|
|
1787
1833
|
protocol: "unknown"
|
|
1788
1834
|
},
|
|
1789
1835
|
{
|
|
1790
|
-
url: "https://alb.reddit.com/rp.gif?ts=
|
|
1836
|
+
url: "https://alb.reddit.com/rp.gif?ts=1773925952972&id=a2_ilz4u0kbdr3v&event=PageVisit&m.itemCount=&m.value=&m.valueDecimal=&m.currency=&m.transactionId=&m.customEventName=&m.products=&m.conversionId=&uuid=feae778e-0f4b-41f7-a5fa-840388c4cbc4&aaid=&em=&pn=&external_id=&idfa=&integration=reddit&partner=&partner_version=&opt_out=0&sh=1280&sw=720&v=rdt_79aa2193&dpm=&dpcc=&dprc=",
|
|
1791
1837
|
transferKb: 0.6,
|
|
1792
1838
|
decodedKb: 0,
|
|
1793
1839
|
encoding: "none",
|
|
1794
|
-
durationMs:
|
|
1840
|
+
durationMs: 319,
|
|
1795
1841
|
initiatorType: "img",
|
|
1796
1842
|
protocol: "unknown"
|
|
1797
1843
|
}
|
|
@@ -1800,7 +1846,7 @@ const redditPixel = {
|
|
|
1800
1846
|
const googleAdsense = {
|
|
1801
1847
|
totalTransferKb: 69.8,
|
|
1802
1848
|
totalDecodedKb: 198.2,
|
|
1803
|
-
loadTimeMs:
|
|
1849
|
+
loadTimeMs: 300,
|
|
1804
1850
|
collectsWebVitals: true,
|
|
1805
1851
|
apis: {
|
|
1806
1852
|
cookies: true,
|
|
@@ -1847,14 +1893,14 @@ const googleAdsense = {
|
|
|
1847
1893
|
"pagead2.googlesyndication.com"
|
|
1848
1894
|
],
|
|
1849
1895
|
outboundBytes: 0,
|
|
1850
|
-
inboundBytes:
|
|
1896
|
+
inboundBytes: 64713,
|
|
1851
1897
|
injectedElements: [
|
|
1852
1898
|
]
|
|
1853
1899
|
},
|
|
1854
1900
|
performance: {
|
|
1855
|
-
taskDurationMs:
|
|
1856
|
-
scriptDurationMs:
|
|
1857
|
-
heapDeltaKb:
|
|
1901
|
+
taskDurationMs: 15,
|
|
1902
|
+
scriptDurationMs: 7,
|
|
1903
|
+
heapDeltaKb: 1835
|
|
1858
1904
|
},
|
|
1859
1905
|
scripts: [
|
|
1860
1906
|
{
|
|
@@ -1862,7 +1908,7 @@ const googleAdsense = {
|
|
|
1862
1908
|
transferKb: 63,
|
|
1863
1909
|
decodedKb: 191.4,
|
|
1864
1910
|
encoding: "br",
|
|
1865
|
-
durationMs:
|
|
1911
|
+
durationMs: 300,
|
|
1866
1912
|
initiatorType: "script",
|
|
1867
1913
|
protocol: "h2"
|
|
1868
1914
|
},
|
|
@@ -1880,7 +1926,7 @@ const googleAdsense = {
|
|
|
1880
1926
|
const carbonAds = {
|
|
1881
1927
|
totalTransferKb: 10.4,
|
|
1882
1928
|
totalDecodedKb: 34.5,
|
|
1883
|
-
loadTimeMs:
|
|
1929
|
+
loadTimeMs: 82,
|
|
1884
1930
|
collectsWebVitals: false,
|
|
1885
1931
|
apis: {
|
|
1886
1932
|
cookies: true,
|
|
@@ -1932,7 +1978,7 @@ const carbonAds = {
|
|
|
1932
1978
|
]
|
|
1933
1979
|
},
|
|
1934
1980
|
performance: {
|
|
1935
|
-
taskDurationMs:
|
|
1981
|
+
taskDurationMs: 7,
|
|
1936
1982
|
scriptDurationMs: 1,
|
|
1937
1983
|
heapDeltaKb: 730
|
|
1938
1984
|
},
|
|
@@ -1942,7 +1988,7 @@ const carbonAds = {
|
|
|
1942
1988
|
transferKb: 10.4,
|
|
1943
1989
|
decodedKb: 34.5,
|
|
1944
1990
|
encoding: "gzip",
|
|
1945
|
-
durationMs:
|
|
1991
|
+
durationMs: 82,
|
|
1946
1992
|
initiatorType: "script",
|
|
1947
1993
|
protocol: "unknown"
|
|
1948
1994
|
}
|
|
@@ -1951,7 +1997,7 @@ const carbonAds = {
|
|
|
1951
1997
|
const hotjar = {
|
|
1952
1998
|
totalTransferKb: 62.2,
|
|
1953
1999
|
totalDecodedKb: 242.5,
|
|
1954
|
-
loadTimeMs:
|
|
2000
|
+
loadTimeMs: 338,
|
|
1955
2001
|
collectsWebVitals: false,
|
|
1956
2002
|
apis: {
|
|
1957
2003
|
cookies: true,
|
|
@@ -1998,7 +2044,7 @@ const hotjar = {
|
|
|
1998
2044
|
"static.hotjar.com"
|
|
1999
2045
|
],
|
|
2000
2046
|
outboundBytes: 0,
|
|
2001
|
-
inboundBytes:
|
|
2047
|
+
inboundBytes: 6335,
|
|
2002
2048
|
injectedElements: [
|
|
2003
2049
|
]
|
|
2004
2050
|
},
|
|
@@ -2013,7 +2059,7 @@ const hotjar = {
|
|
|
2013
2059
|
transferKb: 6.2,
|
|
2014
2060
|
decodedKb: 15,
|
|
2015
2061
|
encoding: "br",
|
|
2016
|
-
durationMs:
|
|
2062
|
+
durationMs: 338,
|
|
2017
2063
|
initiatorType: "script",
|
|
2018
2064
|
protocol: "unknown"
|
|
2019
2065
|
},
|
|
@@ -2031,7 +2077,7 @@ const hotjar = {
|
|
|
2031
2077
|
const clarity = {
|
|
2032
2078
|
totalTransferKb: 27.2,
|
|
2033
2079
|
totalDecodedKb: 80.2,
|
|
2034
|
-
loadTimeMs:
|
|
2080
|
+
loadTimeMs: 648,
|
|
2035
2081
|
collectsWebVitals: true,
|
|
2036
2082
|
apis: {
|
|
2037
2083
|
cookies: true,
|
|
@@ -2079,8 +2125,8 @@ const clarity = {
|
|
|
2079
2125
|
"scripts.clarity.ms",
|
|
2080
2126
|
"www.clarity.ms"
|
|
2081
2127
|
],
|
|
2082
|
-
outboundBytes:
|
|
2083
|
-
inboundBytes:
|
|
2128
|
+
outboundBytes: 756,
|
|
2129
|
+
inboundBytes: 27824,
|
|
2084
2130
|
injectedElements: [
|
|
2085
2131
|
{
|
|
2086
2132
|
tag: "script",
|
|
@@ -2090,8 +2136,8 @@ const clarity = {
|
|
|
2090
2136
|
},
|
|
2091
2137
|
performance: {
|
|
2092
2138
|
taskDurationMs: 20,
|
|
2093
|
-
scriptDurationMs:
|
|
2094
|
-
heapDeltaKb:
|
|
2139
|
+
scriptDurationMs: 9,
|
|
2140
|
+
heapDeltaKb: 1199
|
|
2095
2141
|
},
|
|
2096
2142
|
scripts: [
|
|
2097
2143
|
{
|
|
@@ -2099,7 +2145,7 @@ const clarity = {
|
|
|
2099
2145
|
transferKb: 0.8,
|
|
2100
2146
|
decodedKb: 0.6,
|
|
2101
2147
|
encoding: "none",
|
|
2102
|
-
durationMs:
|
|
2148
|
+
durationMs: 354,
|
|
2103
2149
|
initiatorType: "script",
|
|
2104
2150
|
protocol: "unknown"
|
|
2105
2151
|
},
|
|
@@ -2108,7 +2154,7 @@ const clarity = {
|
|
|
2108
2154
|
transferKb: 26.1,
|
|
2109
2155
|
decodedKb: 79.6,
|
|
2110
2156
|
encoding: "br",
|
|
2111
|
-
durationMs:
|
|
2157
|
+
durationMs: 178,
|
|
2112
2158
|
initiatorType: "script",
|
|
2113
2159
|
protocol: "unknown"
|
|
2114
2160
|
},
|
|
@@ -2117,7 +2163,7 @@ const clarity = {
|
|
|
2117
2163
|
transferKb: 0.3,
|
|
2118
2164
|
decodedKb: 0,
|
|
2119
2165
|
encoding: "none",
|
|
2120
|
-
durationMs:
|
|
2166
|
+
durationMs: 648,
|
|
2121
2167
|
initiatorType: "xmlhttprequest",
|
|
2122
2168
|
protocol: "unknown"
|
|
2123
2169
|
}
|
|
@@ -2126,7 +2172,7 @@ const clarity = {
|
|
|
2126
2172
|
const googleTagManager = {
|
|
2127
2173
|
totalTransferKb: 108.6,
|
|
2128
2174
|
totalDecodedKb: 302.5,
|
|
2129
|
-
loadTimeMs:
|
|
2175
|
+
loadTimeMs: 460,
|
|
2130
2176
|
collectsWebVitals: false,
|
|
2131
2177
|
apis: {
|
|
2132
2178
|
cookies: true,
|
|
@@ -2173,14 +2219,14 @@ const googleTagManager = {
|
|
|
2173
2219
|
"www.googletagmanager.com"
|
|
2174
2220
|
],
|
|
2175
2221
|
outboundBytes: 0,
|
|
2176
|
-
inboundBytes:
|
|
2222
|
+
inboundBytes: 111254,
|
|
2177
2223
|
injectedElements: [
|
|
2178
2224
|
]
|
|
2179
2225
|
},
|
|
2180
2226
|
performance: {
|
|
2181
|
-
taskDurationMs:
|
|
2182
|
-
scriptDurationMs:
|
|
2183
|
-
heapDeltaKb:
|
|
2227
|
+
taskDurationMs: 15,
|
|
2228
|
+
scriptDurationMs: 6,
|
|
2229
|
+
heapDeltaKb: 1810
|
|
2184
2230
|
},
|
|
2185
2231
|
scripts: [
|
|
2186
2232
|
{
|
|
@@ -2188,7 +2234,7 @@ const googleTagManager = {
|
|
|
2188
2234
|
transferKb: 108.6,
|
|
2189
2235
|
decodedKb: 302.5,
|
|
2190
2236
|
encoding: "zstd",
|
|
2191
|
-
durationMs:
|
|
2237
|
+
durationMs: 460,
|
|
2192
2238
|
initiatorType: "script",
|
|
2193
2239
|
protocol: "unknown"
|
|
2194
2240
|
}
|
|
@@ -2197,7 +2243,7 @@ const googleTagManager = {
|
|
|
2197
2243
|
const intercom = {
|
|
2198
2244
|
totalTransferKb: 9669.5,
|
|
2199
2245
|
totalDecodedKb: 10437.8,
|
|
2200
|
-
loadTimeMs:
|
|
2246
|
+
loadTimeMs: 724,
|
|
2201
2247
|
collectsWebVitals: false,
|
|
2202
2248
|
apis: {
|
|
2203
2249
|
cookies: true,
|
|
@@ -2249,7 +2295,7 @@ const intercom = {
|
|
|
2249
2295
|
]
|
|
2250
2296
|
},
|
|
2251
2297
|
performance: {
|
|
2252
|
-
taskDurationMs:
|
|
2298
|
+
taskDurationMs: 6,
|
|
2253
2299
|
scriptDurationMs: 0,
|
|
2254
2300
|
heapDeltaKb: 726
|
|
2255
2301
|
},
|
|
@@ -2259,7 +2305,7 @@ const intercom = {
|
|
|
2259
2305
|
transferKb: 3.6,
|
|
2260
2306
|
decodedKb: 7.4,
|
|
2261
2307
|
encoding: "gzip",
|
|
2262
|
-
durationMs:
|
|
2308
|
+
durationMs: 724,
|
|
2263
2309
|
initiatorType: "script",
|
|
2264
2310
|
protocol: "unknown"
|
|
2265
2311
|
},
|
|
@@ -2291,7 +2337,7 @@ const intercom = {
|
|
|
2291
2337
|
protocol: "unknown"
|
|
2292
2338
|
},
|
|
2293
2339
|
{
|
|
2294
|
-
url: "https://js.intercomcdn.com/frame-modern.
|
|
2340
|
+
url: "https://js.intercomcdn.com/frame-modern.458ee37e.js",
|
|
2295
2341
|
transferKb: 190,
|
|
2296
2342
|
decodedKb: 630.3,
|
|
2297
2343
|
encoding: "gzip",
|
|
@@ -2304,7 +2350,7 @@ const intercom = {
|
|
|
2304
2350
|
const crisp = {
|
|
2305
2351
|
totalTransferKb: 324.9,
|
|
2306
2352
|
totalDecodedKb: 329.1,
|
|
2307
|
-
loadTimeMs:
|
|
2353
|
+
loadTimeMs: 98,
|
|
2308
2354
|
collectsWebVitals: false,
|
|
2309
2355
|
apis: {
|
|
2310
2356
|
cookies: true,
|
|
@@ -2356,8 +2402,8 @@ const crisp = {
|
|
|
2356
2402
|
]
|
|
2357
2403
|
},
|
|
2358
2404
|
performance: {
|
|
2359
|
-
taskDurationMs:
|
|
2360
|
-
scriptDurationMs:
|
|
2405
|
+
taskDurationMs: 6,
|
|
2406
|
+
scriptDurationMs: 0,
|
|
2361
2407
|
heapDeltaKb: 741
|
|
2362
2408
|
},
|
|
2363
2409
|
scripts: [
|
|
@@ -2366,7 +2412,7 @@ const crisp = {
|
|
|
2366
2412
|
transferKb: 3.3,
|
|
2367
2413
|
decodedKb: 7.5,
|
|
2368
2414
|
encoding: "br",
|
|
2369
|
-
durationMs:
|
|
2415
|
+
durationMs: 98,
|
|
2370
2416
|
initiatorType: "script",
|
|
2371
2417
|
protocol: "unknown"
|
|
2372
2418
|
},
|
|
@@ -2382,9 +2428,9 @@ const crisp = {
|
|
|
2382
2428
|
]
|
|
2383
2429
|
};
|
|
2384
2430
|
const stripe = {
|
|
2385
|
-
totalTransferKb:
|
|
2431
|
+
totalTransferKb: 214.4,
|
|
2386
2432
|
totalDecodedKb: 926.5,
|
|
2387
|
-
loadTimeMs:
|
|
2433
|
+
loadTimeMs: 171,
|
|
2388
2434
|
collectsWebVitals: false,
|
|
2389
2435
|
apis: {
|
|
2390
2436
|
cookies: true,
|
|
@@ -2442,35 +2488,35 @@ const stripe = {
|
|
|
2442
2488
|
"js.stripe.com"
|
|
2443
2489
|
],
|
|
2444
2490
|
outboundBytes: 0,
|
|
2445
|
-
inboundBytes:
|
|
2491
|
+
inboundBytes: 219407,
|
|
2446
2492
|
injectedElements: [
|
|
2447
2493
|
{
|
|
2448
2494
|
tag: "iframe",
|
|
2449
|
-
src: "https://js.stripe.com/v3/m-outer-3437aaddcdf6922d623e172c2d6f9278.html#url=http%3A%2F%2F127.0.0.1%
|
|
2495
|
+
src: "https://js.stripe.com/v3/m-outer-3437aaddcdf6922d623e172c2d6f9278.html#url=http%3A%2F%2F127.0.0.1%3A34289%2Fstripe&title=&referrer=&muid=NA&sid=NA&version=6&preview=false&__shared_params__[version]=v3"
|
|
2450
2496
|
}
|
|
2451
2497
|
]
|
|
2452
2498
|
},
|
|
2453
2499
|
performance: {
|
|
2454
|
-
taskDurationMs:
|
|
2455
|
-
scriptDurationMs:
|
|
2456
|
-
heapDeltaKb:
|
|
2500
|
+
taskDurationMs: 90,
|
|
2501
|
+
scriptDurationMs: 13,
|
|
2502
|
+
heapDeltaKb: 4113
|
|
2457
2503
|
},
|
|
2458
2504
|
scripts: [
|
|
2459
2505
|
{
|
|
2460
2506
|
url: "https://js.stripe.com/v3/",
|
|
2461
|
-
transferKb: 214
|
|
2507
|
+
transferKb: 214,
|
|
2462
2508
|
decodedKb: 926.3,
|
|
2463
2509
|
encoding: "br",
|
|
2464
|
-
durationMs:
|
|
2510
|
+
durationMs: 171,
|
|
2465
2511
|
initiatorType: "script",
|
|
2466
2512
|
protocol: "h2"
|
|
2467
2513
|
},
|
|
2468
2514
|
{
|
|
2469
|
-
url: "https://js.stripe.com/v3/m-outer-3437aaddcdf6922d623e172c2d6f9278.html#url=http%3A%2F%2F127.0.0.1%
|
|
2470
|
-
transferKb: 0.
|
|
2515
|
+
url: "https://js.stripe.com/v3/m-outer-3437aaddcdf6922d623e172c2d6f9278.html#url=http%3A%2F%2F127.0.0.1%3A34289%2Fstripe&title=&referrer=&muid=NA&sid=NA&version=6&preview=false&__shared_params__[version]=v3",
|
|
2516
|
+
transferKb: 0.4,
|
|
2471
2517
|
decodedKb: 0.2,
|
|
2472
2518
|
encoding: "none",
|
|
2473
|
-
durationMs:
|
|
2519
|
+
durationMs: 29,
|
|
2474
2520
|
initiatorType: "iframe",
|
|
2475
2521
|
protocol: "h2"
|
|
2476
2522
|
}
|
|
@@ -2479,7 +2525,7 @@ const stripe = {
|
|
|
2479
2525
|
const lemonSqueezy = {
|
|
2480
2526
|
totalTransferKb: 1.8,
|
|
2481
2527
|
totalDecodedKb: 3.8,
|
|
2482
|
-
loadTimeMs:
|
|
2528
|
+
loadTimeMs: 104,
|
|
2483
2529
|
collectsWebVitals: false,
|
|
2484
2530
|
apis: {
|
|
2485
2531
|
cookies: true,
|
|
@@ -2526,12 +2572,12 @@ const lemonSqueezy = {
|
|
|
2526
2572
|
"assets.lemonsqueezy.com"
|
|
2527
2573
|
],
|
|
2528
2574
|
outboundBytes: 0,
|
|
2529
|
-
inboundBytes:
|
|
2575
|
+
inboundBytes: 1839,
|
|
2530
2576
|
injectedElements: [
|
|
2531
2577
|
]
|
|
2532
2578
|
},
|
|
2533
2579
|
performance: {
|
|
2534
|
-
taskDurationMs:
|
|
2580
|
+
taskDurationMs: 5,
|
|
2535
2581
|
scriptDurationMs: 0,
|
|
2536
2582
|
heapDeltaKb: 720
|
|
2537
2583
|
},
|
|
@@ -2541,16 +2587,16 @@ const lemonSqueezy = {
|
|
|
2541
2587
|
transferKb: 1.8,
|
|
2542
2588
|
decodedKb: 3.8,
|
|
2543
2589
|
encoding: "br",
|
|
2544
|
-
durationMs:
|
|
2590
|
+
durationMs: 104,
|
|
2545
2591
|
initiatorType: "script",
|
|
2546
2592
|
protocol: "unknown"
|
|
2547
2593
|
}
|
|
2548
2594
|
]
|
|
2549
2595
|
};
|
|
2550
2596
|
const paypal = {
|
|
2551
|
-
totalTransferKb: 95.
|
|
2597
|
+
totalTransferKb: 95.5,
|
|
2552
2598
|
totalDecodedKb: 288.8,
|
|
2553
|
-
loadTimeMs:
|
|
2599
|
+
loadTimeMs: 159,
|
|
2554
2600
|
collectsWebVitals: false,
|
|
2555
2601
|
apis: {
|
|
2556
2602
|
cookies: true,
|
|
@@ -2597,22 +2643,22 @@ const paypal = {
|
|
|
2597
2643
|
"www.paypal.com"
|
|
2598
2644
|
],
|
|
2599
2645
|
outboundBytes: 0,
|
|
2600
|
-
inboundBytes:
|
|
2646
|
+
inboundBytes: 49994,
|
|
2601
2647
|
injectedElements: [
|
|
2602
2648
|
]
|
|
2603
2649
|
},
|
|
2604
2650
|
performance: {
|
|
2605
2651
|
taskDurationMs: 21,
|
|
2606
|
-
scriptDurationMs:
|
|
2652
|
+
scriptDurationMs: 11,
|
|
2607
2653
|
heapDeltaKb: 1682
|
|
2608
2654
|
},
|
|
2609
2655
|
scripts: [
|
|
2610
2656
|
{
|
|
2611
2657
|
url: "https://www.paypal.com/web-sdk/v6/core",
|
|
2612
|
-
transferKb: 48.
|
|
2658
|
+
transferKb: 48.8,
|
|
2613
2659
|
decodedKb: 148,
|
|
2614
|
-
encoding: "
|
|
2615
|
-
durationMs:
|
|
2660
|
+
encoding: "gzip",
|
|
2661
|
+
durationMs: 159,
|
|
2616
2662
|
initiatorType: "script",
|
|
2617
2663
|
protocol: "unknown"
|
|
2618
2664
|
},
|
|
@@ -2639,7 +2685,7 @@ const paypal = {
|
|
|
2639
2685
|
const vimeoPlayer = {
|
|
2640
2686
|
totalTransferKb: 8.9,
|
|
2641
2687
|
totalDecodedKb: 23.8,
|
|
2642
|
-
loadTimeMs:
|
|
2688
|
+
loadTimeMs: 96,
|
|
2643
2689
|
collectsWebVitals: false,
|
|
2644
2690
|
apis: {
|
|
2645
2691
|
cookies: false,
|
|
@@ -2714,7 +2760,7 @@ const vimeoPlayer = {
|
|
|
2714
2760
|
},
|
|
2715
2761
|
performance: {
|
|
2716
2762
|
taskDurationMs: 7,
|
|
2717
|
-
scriptDurationMs:
|
|
2763
|
+
scriptDurationMs: 0,
|
|
2718
2764
|
heapDeltaKb: 742
|
|
2719
2765
|
},
|
|
2720
2766
|
scripts: [
|
|
@@ -2723,16 +2769,16 @@ const vimeoPlayer = {
|
|
|
2723
2769
|
transferKb: 8.9,
|
|
2724
2770
|
decodedKb: 23.8,
|
|
2725
2771
|
encoding: "gzip",
|
|
2726
|
-
durationMs:
|
|
2772
|
+
durationMs: 96,
|
|
2727
2773
|
initiatorType: "script",
|
|
2728
2774
|
protocol: "unknown"
|
|
2729
2775
|
}
|
|
2730
2776
|
]
|
|
2731
2777
|
};
|
|
2732
2778
|
const youtubePlayer = {
|
|
2733
|
-
totalTransferKb:
|
|
2779
|
+
totalTransferKb: 14,
|
|
2734
2780
|
totalDecodedKb: 32.4,
|
|
2735
|
-
loadTimeMs:
|
|
2781
|
+
loadTimeMs: 289,
|
|
2736
2782
|
collectsWebVitals: false,
|
|
2737
2783
|
apis: {
|
|
2738
2784
|
cookies: false,
|
|
@@ -2834,7 +2880,7 @@ const youtubePlayer = {
|
|
|
2834
2880
|
"www.youtube.com"
|
|
2835
2881
|
],
|
|
2836
2882
|
outboundBytes: 0,
|
|
2837
|
-
inboundBytes:
|
|
2883
|
+
inboundBytes: 14267,
|
|
2838
2884
|
injectedElements: [
|
|
2839
2885
|
{
|
|
2840
2886
|
tag: "script",
|
|
@@ -2850,10 +2896,10 @@ const youtubePlayer = {
|
|
|
2850
2896
|
scripts: [
|
|
2851
2897
|
{
|
|
2852
2898
|
url: "https://www.youtube.com/iframe_api",
|
|
2853
|
-
transferKb: 3.
|
|
2899
|
+
transferKb: 3.4,
|
|
2854
2900
|
decodedKb: 1,
|
|
2855
2901
|
encoding: "br",
|
|
2856
|
-
durationMs:
|
|
2902
|
+
durationMs: 289,
|
|
2857
2903
|
initiatorType: "script",
|
|
2858
2904
|
protocol: "unknown"
|
|
2859
2905
|
},
|
|
@@ -2862,7 +2908,7 @@ const youtubePlayer = {
|
|
|
2862
2908
|
transferKb: 10.6,
|
|
2863
2909
|
decodedKb: 31.4,
|
|
2864
2910
|
encoding: "br",
|
|
2865
|
-
durationMs:
|
|
2911
|
+
durationMs: 20,
|
|
2866
2912
|
initiatorType: "script",
|
|
2867
2913
|
protocol: "unknown"
|
|
2868
2914
|
}
|
|
@@ -2993,7 +3039,7 @@ const npm = {
|
|
|
2993
3039
|
const googleRecaptcha = {
|
|
2994
3040
|
totalTransferKb: 363.9,
|
|
2995
3041
|
totalDecodedKb: 852,
|
|
2996
|
-
loadTimeMs:
|
|
3042
|
+
loadTimeMs: 250,
|
|
2997
3043
|
collectsWebVitals: false,
|
|
2998
3044
|
apis: {
|
|
2999
3045
|
cookies: false,
|
|
@@ -3052,7 +3098,7 @@ const googleRecaptcha = {
|
|
|
3052
3098
|
performance: {
|
|
3053
3099
|
taskDurationMs: 68,
|
|
3054
3100
|
scriptDurationMs: 38,
|
|
3055
|
-
heapDeltaKb:
|
|
3101
|
+
heapDeltaKb: 3011
|
|
3056
3102
|
},
|
|
3057
3103
|
scripts: [
|
|
3058
3104
|
{
|
|
@@ -3060,7 +3106,7 @@ const googleRecaptcha = {
|
|
|
3060
3106
|
transferKb: 1.5,
|
|
3061
3107
|
decodedKb: 1.5,
|
|
3062
3108
|
encoding: "gzip",
|
|
3063
|
-
durationMs:
|
|
3109
|
+
durationMs: 250,
|
|
3064
3110
|
initiatorType: "script",
|
|
3065
3111
|
protocol: "unknown"
|
|
3066
3112
|
},
|
|
@@ -3069,7 +3115,7 @@ const googleRecaptcha = {
|
|
|
3069
3115
|
transferKb: 362.4,
|
|
3070
3116
|
decodedKb: 850.5,
|
|
3071
3117
|
encoding: "gzip",
|
|
3072
|
-
durationMs:
|
|
3118
|
+
durationMs: 235,
|
|
3073
3119
|
initiatorType: "script",
|
|
3074
3120
|
protocol: "h2"
|
|
3075
3121
|
}
|
|
@@ -3078,7 +3124,7 @@ const googleRecaptcha = {
|
|
|
3078
3124
|
const googleSignIn = {
|
|
3079
3125
|
totalTransferKb: 92.1,
|
|
3080
3126
|
totalDecodedKb: 247.6,
|
|
3081
|
-
loadTimeMs:
|
|
3127
|
+
loadTimeMs: 563,
|
|
3082
3128
|
collectsWebVitals: false,
|
|
3083
3129
|
apis: {
|
|
3084
3130
|
cookies: false,
|
|
@@ -3140,7 +3186,7 @@ const googleSignIn = {
|
|
|
3140
3186
|
transferKb: 92.1,
|
|
3141
3187
|
decodedKb: 247.6,
|
|
3142
3188
|
encoding: "gzip",
|
|
3143
|
-
durationMs:
|
|
3189
|
+
durationMs: 563,
|
|
3144
3190
|
initiatorType: "script",
|
|
3145
3191
|
protocol: "unknown"
|
|
3146
3192
|
}
|
|
@@ -3210,7 +3256,7 @@ const blueskyEmbed = {
|
|
|
3210
3256
|
const instagramEmbed = {
|
|
3211
3257
|
totalTransferKb: 33.9,
|
|
3212
3258
|
totalDecodedKb: 102.2,
|
|
3213
|
-
loadTimeMs:
|
|
3259
|
+
loadTimeMs: 338,
|
|
3214
3260
|
collectsWebVitals: false,
|
|
3215
3261
|
apis: {
|
|
3216
3262
|
cookies: false,
|
|
@@ -3257,12 +3303,12 @@ const instagramEmbed = {
|
|
|
3257
3303
|
"www.instagram.com"
|
|
3258
3304
|
],
|
|
3259
3305
|
outboundBytes: 0,
|
|
3260
|
-
inboundBytes:
|
|
3306
|
+
inboundBytes: 36788,
|
|
3261
3307
|
injectedElements: [
|
|
3262
3308
|
]
|
|
3263
3309
|
},
|
|
3264
3310
|
performance: {
|
|
3265
|
-
taskDurationMs:
|
|
3311
|
+
taskDurationMs: 11,
|
|
3266
3312
|
scriptDurationMs: 5,
|
|
3267
3313
|
heapDeltaKb: 886
|
|
3268
3314
|
},
|
|
@@ -3272,7 +3318,7 @@ const instagramEmbed = {
|
|
|
3272
3318
|
transferKb: 33.9,
|
|
3273
3319
|
decodedKb: 102.2,
|
|
3274
3320
|
encoding: "zstd",
|
|
3275
|
-
durationMs:
|
|
3321
|
+
durationMs: 338,
|
|
3276
3322
|
initiatorType: "script",
|
|
3277
3323
|
protocol: "h2"
|
|
3278
3324
|
}
|
|
@@ -3281,7 +3327,7 @@ const instagramEmbed = {
|
|
|
3281
3327
|
const xEmbed = {
|
|
3282
3328
|
totalTransferKb: 130.5,
|
|
3283
3329
|
totalDecodedKb: 410.4,
|
|
3284
|
-
loadTimeMs:
|
|
3330
|
+
loadTimeMs: 72,
|
|
3285
3331
|
collectsWebVitals: false,
|
|
3286
3332
|
apis: {
|
|
3287
3333
|
cookies: false,
|
|
@@ -3329,18 +3375,18 @@ const xEmbed = {
|
|
|
3329
3375
|
"syndication.twitter.com"
|
|
3330
3376
|
],
|
|
3331
3377
|
outboundBytes: 0,
|
|
3332
|
-
inboundBytes:
|
|
3378
|
+
inboundBytes: 134601,
|
|
3333
3379
|
injectedElements: [
|
|
3334
3380
|
{
|
|
3335
3381
|
tag: "iframe",
|
|
3336
|
-
src: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%
|
|
3382
|
+
src: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%3A34289"
|
|
3337
3383
|
}
|
|
3338
3384
|
]
|
|
3339
3385
|
},
|
|
3340
3386
|
performance: {
|
|
3341
|
-
taskDurationMs:
|
|
3342
|
-
scriptDurationMs:
|
|
3343
|
-
heapDeltaKb:
|
|
3387
|
+
taskDurationMs: 40,
|
|
3388
|
+
scriptDurationMs: 13,
|
|
3389
|
+
heapDeltaKb: 2476
|
|
3344
3390
|
},
|
|
3345
3391
|
scripts: [
|
|
3346
3392
|
{
|
|
@@ -3348,25 +3394,25 @@ const xEmbed = {
|
|
|
3348
3394
|
transferKb: 27.3,
|
|
3349
3395
|
decodedKb: 90.9,
|
|
3350
3396
|
encoding: "gzip",
|
|
3351
|
-
durationMs:
|
|
3397
|
+
durationMs: 72,
|
|
3352
3398
|
initiatorType: "script",
|
|
3353
3399
|
protocol: "unknown"
|
|
3354
3400
|
},
|
|
3355
3401
|
{
|
|
3356
|
-
url: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%
|
|
3402
|
+
url: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%3A34289",
|
|
3357
3403
|
transferKb: 103.2,
|
|
3358
3404
|
decodedKb: 319.5,
|
|
3359
3405
|
encoding: "gzip",
|
|
3360
|
-
durationMs:
|
|
3406
|
+
durationMs: 50,
|
|
3361
3407
|
initiatorType: "iframe",
|
|
3362
3408
|
protocol: "unknown"
|
|
3363
3409
|
}
|
|
3364
3410
|
]
|
|
3365
3411
|
};
|
|
3366
3412
|
const gravatar = {
|
|
3367
|
-
totalTransferKb:
|
|
3368
|
-
totalDecodedKb:
|
|
3369
|
-
loadTimeMs:
|
|
3413
|
+
totalTransferKb: 7.1,
|
|
3414
|
+
totalDecodedKb: 21.3,
|
|
3415
|
+
loadTimeMs: 65,
|
|
3370
3416
|
collectsWebVitals: false,
|
|
3371
3417
|
apis: {
|
|
3372
3418
|
cookies: false,
|
|
@@ -3398,7 +3444,7 @@ const gravatar = {
|
|
|
3398
3444
|
serviceWorker: false,
|
|
3399
3445
|
cacheApi: false,
|
|
3400
3446
|
sendBeacon: false,
|
|
3401
|
-
fetch:
|
|
3447
|
+
fetch: true,
|
|
3402
3448
|
xhr: false,
|
|
3403
3449
|
websocket: false,
|
|
3404
3450
|
mutationObserver: false,
|
|
@@ -3408,20 +3454,30 @@ const gravatar = {
|
|
|
3408
3454
|
cookies: [
|
|
3409
3455
|
],
|
|
3410
3456
|
network: {
|
|
3411
|
-
requestCount:
|
|
3457
|
+
requestCount: 1,
|
|
3412
3458
|
domains: [
|
|
3459
|
+
"secure.gravatar.com"
|
|
3413
3460
|
],
|
|
3414
3461
|
outboundBytes: 0,
|
|
3415
|
-
inboundBytes:
|
|
3462
|
+
inboundBytes: 7295,
|
|
3416
3463
|
injectedElements: [
|
|
3417
3464
|
]
|
|
3418
3465
|
},
|
|
3419
3466
|
performance: {
|
|
3420
|
-
taskDurationMs:
|
|
3467
|
+
taskDurationMs: 6,
|
|
3421
3468
|
scriptDurationMs: 0,
|
|
3422
|
-
heapDeltaKb:
|
|
3469
|
+
heapDeltaKb: 717
|
|
3423
3470
|
},
|
|
3424
3471
|
scripts: [
|
|
3472
|
+
{
|
|
3473
|
+
url: "https://secure.gravatar.com/js/gprofiles.js",
|
|
3474
|
+
transferKb: 7.1,
|
|
3475
|
+
decodedKb: 21.3,
|
|
3476
|
+
encoding: "br",
|
|
3477
|
+
durationMs: 65,
|
|
3478
|
+
initiatorType: "script",
|
|
3479
|
+
protocol: "unknown"
|
|
3480
|
+
}
|
|
3425
3481
|
]
|
|
3426
3482
|
};
|
|
3427
3483
|
const scriptSizes = {
|