@nuxt/scripts 1.0.0-beta.25 → 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.
- package/dist/client/200.html +1 -1
- package/dist/client/404.html +1 -1
- package/dist/client/_nuxt/builds/latest.json +1 -1
- package/dist/client/_nuxt/builds/meta/33e1ac0e-aba1-4856-8beb-775c426be236.json +1 -0
- package/dist/client/index.html +1 -1
- package/dist/module.json +1 -1
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.d.vue.ts +2 -5
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue +14 -15
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMaps.vue.d.ts +2 -5
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.d.vue.ts +1 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue +30 -41
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsAdvancedMarkerElement.vue.d.ts +1 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsCircle.vue +19 -28
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsHeatmapLayer.vue +18 -22
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsInfoWindow.vue +30 -37
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.d.vue.ts +1 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue +31 -36
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarker.vue.d.ts +1 -4
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsMarkerClusterer.vue +17 -22
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPinElement.vue +19 -28
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolygon.vue +19 -28
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsPolyline.vue +19 -28
- package/dist/runtime/components/GoogleMaps/ScriptGoogleMapsRectangle.vue +19 -28
- package/dist/runtime/components/GoogleMaps/injectionKeys.d.ts +11 -0
- package/dist/runtime/components/GoogleMaps/injectionKeys.js +3 -0
- package/dist/runtime/components/GoogleMaps/useGoogleMapsResource.d.ts +26 -0
- package/dist/runtime/components/GoogleMaps/useGoogleMapsResource.js +37 -0
- package/dist/stats.d.mts +18 -1
- package/dist/stats.d.ts +18 -1
- package/dist/stats.mjs +833 -248
- package/package.json +5 -5
- package/dist/client/_nuxt/builds/meta/2ec0342e-5e00-4781-82aa-c3c0f9154516.json +0 -1
package/dist/stats.mjs
CHANGED
|
@@ -183,7 +183,7 @@ const scriptMeta = {
|
|
|
183
183
|
const plausibleAnalytics = {
|
|
184
184
|
totalTransferKb: 1.9,
|
|
185
185
|
totalDecodedKb: 2.9,
|
|
186
|
-
loadTimeMs:
|
|
186
|
+
loadTimeMs: 79,
|
|
187
187
|
collectsWebVitals: false,
|
|
188
188
|
apis: {
|
|
189
189
|
cookies: false,
|
|
@@ -194,11 +194,26 @@ const plausibleAnalytics = {
|
|
|
194
194
|
webgl: false,
|
|
195
195
|
audioContext: false,
|
|
196
196
|
userAgent: false,
|
|
197
|
+
doNotTrack: false,
|
|
197
198
|
hardwareConcurrency: false,
|
|
198
199
|
deviceMemory: false,
|
|
199
200
|
plugins: false,
|
|
200
201
|
languages: false,
|
|
201
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,
|
|
202
217
|
sendBeacon: false,
|
|
203
218
|
fetch: true,
|
|
204
219
|
xhr: false,
|
|
@@ -220,9 +235,9 @@ const plausibleAnalytics = {
|
|
|
220
235
|
]
|
|
221
236
|
},
|
|
222
237
|
performance: {
|
|
223
|
-
taskDurationMs:
|
|
224
|
-
scriptDurationMs:
|
|
225
|
-
heapDeltaKb:
|
|
238
|
+
taskDurationMs: 25,
|
|
239
|
+
scriptDurationMs: 3,
|
|
240
|
+
heapDeltaKb: 735
|
|
226
241
|
},
|
|
227
242
|
scripts: [
|
|
228
243
|
{
|
|
@@ -230,16 +245,16 @@ const plausibleAnalytics = {
|
|
|
230
245
|
transferKb: 1.9,
|
|
231
246
|
decodedKb: 2.9,
|
|
232
247
|
encoding: "zstd",
|
|
233
|
-
durationMs:
|
|
248
|
+
durationMs: 79,
|
|
234
249
|
initiatorType: "script",
|
|
235
250
|
protocol: "unknown"
|
|
236
251
|
}
|
|
237
252
|
]
|
|
238
253
|
};
|
|
239
254
|
const cloudflareWebAnalytics = {
|
|
240
|
-
totalTransferKb: 10.
|
|
255
|
+
totalTransferKb: 10.7,
|
|
241
256
|
totalDecodedKb: 30.4,
|
|
242
|
-
loadTimeMs:
|
|
257
|
+
loadTimeMs: 83,
|
|
243
258
|
collectsWebVitals: true,
|
|
244
259
|
apis: {
|
|
245
260
|
cookies: false,
|
|
@@ -250,11 +265,26 @@ const cloudflareWebAnalytics = {
|
|
|
250
265
|
webgl: false,
|
|
251
266
|
audioContext: false,
|
|
252
267
|
userAgent: true,
|
|
268
|
+
doNotTrack: false,
|
|
253
269
|
hardwareConcurrency: false,
|
|
254
270
|
deviceMemory: false,
|
|
255
271
|
plugins: false,
|
|
256
272
|
languages: false,
|
|
257
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,
|
|
258
288
|
sendBeacon: true,
|
|
259
289
|
fetch: false,
|
|
260
290
|
xhr: true,
|
|
@@ -271,22 +301,22 @@ const cloudflareWebAnalytics = {
|
|
|
271
301
|
"static.cloudflareinsights.com"
|
|
272
302
|
],
|
|
273
303
|
outboundBytes: 0,
|
|
274
|
-
inboundBytes:
|
|
304
|
+
inboundBytes: 10993,
|
|
275
305
|
injectedElements: [
|
|
276
306
|
]
|
|
277
307
|
},
|
|
278
308
|
performance: {
|
|
279
309
|
taskDurationMs: 7,
|
|
280
310
|
scriptDurationMs: 1,
|
|
281
|
-
heapDeltaKb:
|
|
311
|
+
heapDeltaKb: 773
|
|
282
312
|
},
|
|
283
313
|
scripts: [
|
|
284
314
|
{
|
|
285
315
|
url: "https://static.cloudflareinsights.com/beacon.min.js",
|
|
286
|
-
transferKb: 10.
|
|
316
|
+
transferKb: 10.7,
|
|
287
317
|
decodedKb: 30.4,
|
|
288
318
|
encoding: "gzip",
|
|
289
|
-
durationMs:
|
|
319
|
+
durationMs: 83,
|
|
290
320
|
initiatorType: "script",
|
|
291
321
|
protocol: "unknown"
|
|
292
322
|
}
|
|
@@ -306,11 +336,26 @@ const posthog = {
|
|
|
306
336
|
webgl: false,
|
|
307
337
|
audioContext: false,
|
|
308
338
|
userAgent: false,
|
|
339
|
+
doNotTrack: false,
|
|
309
340
|
hardwareConcurrency: false,
|
|
310
341
|
deviceMemory: false,
|
|
311
342
|
plugins: false,
|
|
312
343
|
languages: false,
|
|
313
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,
|
|
314
359
|
sendBeacon: false,
|
|
315
360
|
fetch: false,
|
|
316
361
|
xhr: false,
|
|
@@ -341,7 +386,7 @@ const posthog = {
|
|
|
341
386
|
const fathomAnalytics = {
|
|
342
387
|
totalTransferKb: 3,
|
|
343
388
|
totalDecodedKb: 6.7,
|
|
344
|
-
loadTimeMs:
|
|
389
|
+
loadTimeMs: 303,
|
|
345
390
|
collectsWebVitals: false,
|
|
346
391
|
apis: {
|
|
347
392
|
cookies: false,
|
|
@@ -352,11 +397,26 @@ const fathomAnalytics = {
|
|
|
352
397
|
webgl: false,
|
|
353
398
|
audioContext: false,
|
|
354
399
|
userAgent: false,
|
|
400
|
+
doNotTrack: true,
|
|
355
401
|
hardwareConcurrency: false,
|
|
356
402
|
deviceMemory: false,
|
|
357
403
|
plugins: false,
|
|
358
404
|
languages: false,
|
|
359
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,
|
|
360
420
|
sendBeacon: true,
|
|
361
421
|
fetch: false,
|
|
362
422
|
xhr: false,
|
|
@@ -378,9 +438,9 @@ const fathomAnalytics = {
|
|
|
378
438
|
]
|
|
379
439
|
},
|
|
380
440
|
performance: {
|
|
381
|
-
taskDurationMs:
|
|
382
|
-
scriptDurationMs:
|
|
383
|
-
heapDeltaKb:
|
|
441
|
+
taskDurationMs: 16,
|
|
442
|
+
scriptDurationMs: 2,
|
|
443
|
+
heapDeltaKb: 758
|
|
384
444
|
},
|
|
385
445
|
scripts: [
|
|
386
446
|
{
|
|
@@ -388,16 +448,16 @@ const fathomAnalytics = {
|
|
|
388
448
|
transferKb: 2.7,
|
|
389
449
|
decodedKb: 6.7,
|
|
390
450
|
encoding: "zstd",
|
|
391
|
-
durationMs:
|
|
451
|
+
durationMs: 74,
|
|
392
452
|
initiatorType: "script",
|
|
393
453
|
protocol: "unknown"
|
|
394
454
|
},
|
|
395
455
|
{
|
|
396
|
-
url: "https://cdn.usefathom.com/?h=http%3A%2F%2F127.0.0.1&p=%2FfathomAnalytics&r=&sid=null&qs=%7B%7D&cid=
|
|
456
|
+
url: "https://cdn.usefathom.com/?h=http%3A%2F%2F127.0.0.1&p=%2FfathomAnalytics&r=&sid=null&qs=%7B%7D&cid=75417793",
|
|
397
457
|
transferKb: 0.3,
|
|
398
458
|
decodedKb: 0,
|
|
399
459
|
encoding: "none",
|
|
400
|
-
durationMs:
|
|
460
|
+
durationMs: 303,
|
|
401
461
|
initiatorType: "img",
|
|
402
462
|
protocol: "unknown"
|
|
403
463
|
}
|
|
@@ -406,7 +466,7 @@ const fathomAnalytics = {
|
|
|
406
466
|
const matomoAnalytics = {
|
|
407
467
|
totalTransferKb: 60.4,
|
|
408
468
|
totalDecodedKb: 218.6,
|
|
409
|
-
loadTimeMs:
|
|
469
|
+
loadTimeMs: 1681,
|
|
410
470
|
collectsWebVitals: false,
|
|
411
471
|
apis: {
|
|
412
472
|
cookies: true,
|
|
@@ -417,11 +477,26 @@ const matomoAnalytics = {
|
|
|
417
477
|
webgl: false,
|
|
418
478
|
audioContext: false,
|
|
419
479
|
userAgent: true,
|
|
480
|
+
doNotTrack: true,
|
|
420
481
|
hardwareConcurrency: false,
|
|
421
482
|
deviceMemory: false,
|
|
422
483
|
plugins: false,
|
|
423
484
|
languages: false,
|
|
424
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,
|
|
425
500
|
sendBeacon: true,
|
|
426
501
|
fetch: true,
|
|
427
502
|
xhr: true,
|
|
@@ -438,14 +513,14 @@ const matomoAnalytics = {
|
|
|
438
513
|
"cdn.matomo.cloud"
|
|
439
514
|
],
|
|
440
515
|
outboundBytes: 0,
|
|
441
|
-
inboundBytes:
|
|
516
|
+
inboundBytes: 61860,
|
|
442
517
|
injectedElements: [
|
|
443
518
|
]
|
|
444
519
|
},
|
|
445
520
|
performance: {
|
|
446
|
-
taskDurationMs:
|
|
447
|
-
scriptDurationMs:
|
|
448
|
-
heapDeltaKb:
|
|
521
|
+
taskDurationMs: 24,
|
|
522
|
+
scriptDurationMs: 9,
|
|
523
|
+
heapDeltaKb: 1388
|
|
449
524
|
},
|
|
450
525
|
scripts: [
|
|
451
526
|
{
|
|
@@ -453,7 +528,7 @@ const matomoAnalytics = {
|
|
|
453
528
|
transferKb: 60.4,
|
|
454
529
|
decodedKb: 218.6,
|
|
455
530
|
encoding: "br",
|
|
456
|
-
durationMs:
|
|
531
|
+
durationMs: 1681,
|
|
457
532
|
initiatorType: "script",
|
|
458
533
|
protocol: "unknown"
|
|
459
534
|
}
|
|
@@ -461,8 +536,8 @@ const matomoAnalytics = {
|
|
|
461
536
|
};
|
|
462
537
|
const rybbitAnalytics = {
|
|
463
538
|
totalTransferKb: 9,
|
|
464
|
-
totalDecodedKb: 25.
|
|
465
|
-
loadTimeMs:
|
|
539
|
+
totalDecodedKb: 25.4,
|
|
540
|
+
loadTimeMs: 1119,
|
|
466
541
|
collectsWebVitals: true,
|
|
467
542
|
apis: {
|
|
468
543
|
cookies: false,
|
|
@@ -473,11 +548,26 @@ const rybbitAnalytics = {
|
|
|
473
548
|
webgl: false,
|
|
474
549
|
audioContext: false,
|
|
475
550
|
userAgent: false,
|
|
551
|
+
doNotTrack: false,
|
|
476
552
|
hardwareConcurrency: false,
|
|
477
553
|
deviceMemory: false,
|
|
478
554
|
plugins: false,
|
|
479
555
|
languages: true,
|
|
480
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,
|
|
481
571
|
sendBeacon: false,
|
|
482
572
|
fetch: true,
|
|
483
573
|
xhr: false,
|
|
@@ -494,22 +584,22 @@ const rybbitAnalytics = {
|
|
|
494
584
|
"app.rybbit.io"
|
|
495
585
|
],
|
|
496
586
|
outboundBytes: 0,
|
|
497
|
-
inboundBytes:
|
|
587
|
+
inboundBytes: 9198,
|
|
498
588
|
injectedElements: [
|
|
499
589
|
]
|
|
500
590
|
},
|
|
501
591
|
performance: {
|
|
502
|
-
taskDurationMs:
|
|
503
|
-
scriptDurationMs:
|
|
504
|
-
heapDeltaKb:
|
|
592
|
+
taskDurationMs: 8,
|
|
593
|
+
scriptDurationMs: 1,
|
|
594
|
+
heapDeltaKb: 744
|
|
505
595
|
},
|
|
506
596
|
scripts: [
|
|
507
597
|
{
|
|
508
598
|
url: "https://app.rybbit.io/api/script.js",
|
|
509
599
|
transferKb: 9,
|
|
510
|
-
decodedKb: 25.
|
|
600
|
+
decodedKb: 25.4,
|
|
511
601
|
encoding: "zstd",
|
|
512
|
-
durationMs:
|
|
602
|
+
durationMs: 1119,
|
|
513
603
|
initiatorType: "script",
|
|
514
604
|
protocol: "unknown"
|
|
515
605
|
}
|
|
@@ -518,7 +608,7 @@ const rybbitAnalytics = {
|
|
|
518
608
|
const databuddyAnalytics = {
|
|
519
609
|
totalTransferKb: 10.6,
|
|
520
610
|
totalDecodedKb: 29.2,
|
|
521
|
-
loadTimeMs:
|
|
611
|
+
loadTimeMs: 82,
|
|
522
612
|
collectsWebVitals: true,
|
|
523
613
|
apis: {
|
|
524
614
|
cookies: false,
|
|
@@ -529,11 +619,26 @@ const databuddyAnalytics = {
|
|
|
529
619
|
webgl: false,
|
|
530
620
|
audioContext: false,
|
|
531
621
|
userAgent: true,
|
|
622
|
+
doNotTrack: false,
|
|
532
623
|
hardwareConcurrency: false,
|
|
533
624
|
deviceMemory: false,
|
|
534
625
|
plugins: false,
|
|
535
626
|
languages: true,
|
|
536
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,
|
|
537
642
|
sendBeacon: true,
|
|
538
643
|
fetch: true,
|
|
539
644
|
xhr: false,
|
|
@@ -555,9 +660,9 @@ const databuddyAnalytics = {
|
|
|
555
660
|
]
|
|
556
661
|
},
|
|
557
662
|
performance: {
|
|
558
|
-
taskDurationMs:
|
|
559
|
-
scriptDurationMs:
|
|
560
|
-
heapDeltaKb:
|
|
663
|
+
taskDurationMs: 12,
|
|
664
|
+
scriptDurationMs: 5,
|
|
665
|
+
heapDeltaKb: 792
|
|
561
666
|
},
|
|
562
667
|
scripts: [
|
|
563
668
|
{
|
|
@@ -565,7 +670,7 @@ const databuddyAnalytics = {
|
|
|
565
670
|
transferKb: 10.6,
|
|
566
671
|
decodedKb: 29.2,
|
|
567
672
|
encoding: "zstd",
|
|
568
|
-
durationMs:
|
|
673
|
+
durationMs: 82,
|
|
569
674
|
initiatorType: "script",
|
|
570
675
|
protocol: "unknown"
|
|
571
676
|
}
|
|
@@ -574,7 +679,7 @@ const databuddyAnalytics = {
|
|
|
574
679
|
const mixpanelAnalytics = {
|
|
575
680
|
totalTransferKb: 31,
|
|
576
681
|
totalDecodedKb: 93.9,
|
|
577
|
-
loadTimeMs:
|
|
682
|
+
loadTimeMs: 96,
|
|
578
683
|
collectsWebVitals: false,
|
|
579
684
|
apis: {
|
|
580
685
|
cookies: true,
|
|
@@ -585,11 +690,26 @@ const mixpanelAnalytics = {
|
|
|
585
690
|
webgl: false,
|
|
586
691
|
audioContext: false,
|
|
587
692
|
userAgent: true,
|
|
693
|
+
doNotTrack: true,
|
|
588
694
|
hardwareConcurrency: false,
|
|
589
695
|
deviceMemory: false,
|
|
590
696
|
plugins: false,
|
|
591
697
|
languages: false,
|
|
592
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,
|
|
593
713
|
sendBeacon: true,
|
|
594
714
|
fetch: true,
|
|
595
715
|
xhr: true,
|
|
@@ -606,14 +726,14 @@ const mixpanelAnalytics = {
|
|
|
606
726
|
"cdn.mxpnl.com"
|
|
607
727
|
],
|
|
608
728
|
outboundBytes: 0,
|
|
609
|
-
inboundBytes:
|
|
729
|
+
inboundBytes: 31794,
|
|
610
730
|
injectedElements: [
|
|
611
731
|
]
|
|
612
732
|
},
|
|
613
733
|
performance: {
|
|
614
|
-
taskDurationMs:
|
|
615
|
-
scriptDurationMs:
|
|
616
|
-
heapDeltaKb:
|
|
734
|
+
taskDurationMs: 19,
|
|
735
|
+
scriptDurationMs: 11,
|
|
736
|
+
heapDeltaKb: 1156
|
|
617
737
|
},
|
|
618
738
|
scripts: [
|
|
619
739
|
{
|
|
@@ -621,7 +741,7 @@ const mixpanelAnalytics = {
|
|
|
621
741
|
transferKb: 31,
|
|
622
742
|
decodedKb: 93.9,
|
|
623
743
|
encoding: "gzip",
|
|
624
|
-
durationMs:
|
|
744
|
+
durationMs: 96,
|
|
625
745
|
initiatorType: "script",
|
|
626
746
|
protocol: "unknown"
|
|
627
747
|
}
|
|
@@ -630,7 +750,7 @@ const mixpanelAnalytics = {
|
|
|
630
750
|
const segment = {
|
|
631
751
|
totalTransferKb: 29.6,
|
|
632
752
|
totalDecodedKb: 107,
|
|
633
|
-
loadTimeMs:
|
|
753
|
+
loadTimeMs: 983,
|
|
634
754
|
collectsWebVitals: false,
|
|
635
755
|
apis: {
|
|
636
756
|
cookies: true,
|
|
@@ -641,11 +761,26 @@ const segment = {
|
|
|
641
761
|
webgl: false,
|
|
642
762
|
audioContext: false,
|
|
643
763
|
userAgent: true,
|
|
764
|
+
doNotTrack: false,
|
|
644
765
|
hardwareConcurrency: false,
|
|
645
766
|
deviceMemory: false,
|
|
646
767
|
plugins: false,
|
|
647
768
|
languages: true,
|
|
648
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,
|
|
649
784
|
sendBeacon: false,
|
|
650
785
|
fetch: true,
|
|
651
786
|
xhr: true,
|
|
@@ -663,14 +798,14 @@ const segment = {
|
|
|
663
798
|
"cdn.segment.com"
|
|
664
799
|
],
|
|
665
800
|
outboundBytes: 1006,
|
|
666
|
-
inboundBytes:
|
|
801
|
+
inboundBytes: 30260,
|
|
667
802
|
injectedElements: [
|
|
668
803
|
]
|
|
669
804
|
},
|
|
670
805
|
performance: {
|
|
671
|
-
taskDurationMs:
|
|
672
|
-
scriptDurationMs:
|
|
673
|
-
heapDeltaKb:
|
|
806
|
+
taskDurationMs: 28,
|
|
807
|
+
scriptDurationMs: 8,
|
|
808
|
+
heapDeltaKb: 1317
|
|
674
809
|
},
|
|
675
810
|
scripts: [
|
|
676
811
|
{
|
|
@@ -678,7 +813,7 @@ const segment = {
|
|
|
678
813
|
transferKb: 28.2,
|
|
679
814
|
decodedKb: 106.4,
|
|
680
815
|
encoding: "br",
|
|
681
|
-
durationMs:
|
|
816
|
+
durationMs: 983,
|
|
682
817
|
initiatorType: "script",
|
|
683
818
|
protocol: "unknown"
|
|
684
819
|
},
|
|
@@ -687,7 +822,7 @@ const segment = {
|
|
|
687
822
|
transferKb: 1.2,
|
|
688
823
|
decodedKb: 0.6,
|
|
689
824
|
encoding: "none",
|
|
690
|
-
durationMs:
|
|
825
|
+
durationMs: 51,
|
|
691
826
|
initiatorType: "fetch",
|
|
692
827
|
protocol: "unknown"
|
|
693
828
|
},
|
|
@@ -696,16 +831,16 @@ const segment = {
|
|
|
696
831
|
transferKb: 0.2,
|
|
697
832
|
decodedKb: 0,
|
|
698
833
|
encoding: "none",
|
|
699
|
-
durationMs:
|
|
834
|
+
durationMs: 768,
|
|
700
835
|
initiatorType: "fetch",
|
|
701
836
|
protocol: "unknown"
|
|
702
837
|
}
|
|
703
838
|
]
|
|
704
839
|
};
|
|
705
840
|
const googleAnalytics = {
|
|
706
|
-
totalTransferKb:
|
|
707
|
-
totalDecodedKb:
|
|
708
|
-
loadTimeMs:
|
|
841
|
+
totalTransferKb: 154.2,
|
|
842
|
+
totalDecodedKb: 454.1,
|
|
843
|
+
loadTimeMs: 514,
|
|
709
844
|
collectsWebVitals: false,
|
|
710
845
|
apis: {
|
|
711
846
|
cookies: true,
|
|
@@ -716,11 +851,26 @@ const googleAnalytics = {
|
|
|
716
851
|
webgl: false,
|
|
717
852
|
audioContext: false,
|
|
718
853
|
userAgent: true,
|
|
854
|
+
doNotTrack: false,
|
|
719
855
|
hardwareConcurrency: false,
|
|
720
856
|
deviceMemory: false,
|
|
721
857
|
plugins: false,
|
|
722
858
|
languages: false,
|
|
723
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,
|
|
724
874
|
sendBeacon: true,
|
|
725
875
|
fetch: true,
|
|
726
876
|
xhr: true,
|
|
@@ -737,22 +887,22 @@ const googleAnalytics = {
|
|
|
737
887
|
"www.googletagmanager.com"
|
|
738
888
|
],
|
|
739
889
|
outboundBytes: 0,
|
|
740
|
-
inboundBytes:
|
|
890
|
+
inboundBytes: 157885,
|
|
741
891
|
injectedElements: [
|
|
742
892
|
]
|
|
743
893
|
},
|
|
744
894
|
performance: {
|
|
745
|
-
taskDurationMs:
|
|
746
|
-
scriptDurationMs:
|
|
747
|
-
heapDeltaKb:
|
|
895
|
+
taskDurationMs: 34,
|
|
896
|
+
scriptDurationMs: 22,
|
|
897
|
+
heapDeltaKb: 2592
|
|
748
898
|
},
|
|
749
899
|
scripts: [
|
|
750
900
|
{
|
|
751
901
|
url: "https://www.googletagmanager.com/gtag/js?id=G-TR58L0EF8P",
|
|
752
|
-
transferKb:
|
|
753
|
-
decodedKb:
|
|
902
|
+
transferKb: 154.2,
|
|
903
|
+
decodedKb: 454.1,
|
|
754
904
|
encoding: "zstd",
|
|
755
|
-
durationMs:
|
|
905
|
+
durationMs: 514,
|
|
756
906
|
initiatorType: "script",
|
|
757
907
|
protocol: "unknown"
|
|
758
908
|
}
|
|
@@ -761,7 +911,7 @@ const googleAnalytics = {
|
|
|
761
911
|
const umamiAnalytics = {
|
|
762
912
|
totalTransferKb: 2.4,
|
|
763
913
|
totalDecodedKb: 2.6,
|
|
764
|
-
loadTimeMs:
|
|
914
|
+
loadTimeMs: 96,
|
|
765
915
|
collectsWebVitals: false,
|
|
766
916
|
apis: {
|
|
767
917
|
cookies: false,
|
|
@@ -772,11 +922,26 @@ const umamiAnalytics = {
|
|
|
772
922
|
webgl: false,
|
|
773
923
|
audioContext: false,
|
|
774
924
|
userAgent: false,
|
|
925
|
+
doNotTrack: true,
|
|
775
926
|
hardwareConcurrency: false,
|
|
776
927
|
deviceMemory: false,
|
|
777
928
|
plugins: false,
|
|
778
929
|
languages: false,
|
|
779
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,
|
|
780
945
|
sendBeacon: false,
|
|
781
946
|
fetch: true,
|
|
782
947
|
xhr: false,
|
|
@@ -800,7 +965,7 @@ const umamiAnalytics = {
|
|
|
800
965
|
performance: {
|
|
801
966
|
taskDurationMs: 5,
|
|
802
967
|
scriptDurationMs: 0,
|
|
803
|
-
heapDeltaKb:
|
|
968
|
+
heapDeltaKb: 714
|
|
804
969
|
},
|
|
805
970
|
scripts: [
|
|
806
971
|
{
|
|
@@ -808,7 +973,7 @@ const umamiAnalytics = {
|
|
|
808
973
|
transferKb: 2.4,
|
|
809
974
|
decodedKb: 2.6,
|
|
810
975
|
encoding: "br",
|
|
811
|
-
durationMs:
|
|
976
|
+
durationMs: 96,
|
|
812
977
|
initiatorType: "script",
|
|
813
978
|
protocol: "unknown"
|
|
814
979
|
}
|
|
@@ -817,7 +982,7 @@ const umamiAnalytics = {
|
|
|
817
982
|
const vercelAnalytics = {
|
|
818
983
|
totalTransferKb: 1.6,
|
|
819
984
|
totalDecodedKb: 2.4,
|
|
820
|
-
loadTimeMs:
|
|
985
|
+
loadTimeMs: 72,
|
|
821
986
|
collectsWebVitals: false,
|
|
822
987
|
apis: {
|
|
823
988
|
cookies: false,
|
|
@@ -828,11 +993,26 @@ const vercelAnalytics = {
|
|
|
828
993
|
webgl: false,
|
|
829
994
|
audioContext: false,
|
|
830
995
|
userAgent: true,
|
|
996
|
+
doNotTrack: false,
|
|
831
997
|
hardwareConcurrency: false,
|
|
832
998
|
deviceMemory: false,
|
|
833
999
|
plugins: false,
|
|
834
1000
|
languages: false,
|
|
835
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,
|
|
836
1016
|
sendBeacon: false,
|
|
837
1017
|
fetch: true,
|
|
838
1018
|
xhr: false,
|
|
@@ -849,14 +1029,14 @@ const vercelAnalytics = {
|
|
|
849
1029
|
"va.vercel-scripts.com"
|
|
850
1030
|
],
|
|
851
1031
|
outboundBytes: 0,
|
|
852
|
-
inboundBytes:
|
|
1032
|
+
inboundBytes: 1608,
|
|
853
1033
|
injectedElements: [
|
|
854
1034
|
]
|
|
855
1035
|
},
|
|
856
1036
|
performance: {
|
|
857
|
-
taskDurationMs:
|
|
1037
|
+
taskDurationMs: 6,
|
|
858
1038
|
scriptDurationMs: 0,
|
|
859
|
-
heapDeltaKb:
|
|
1039
|
+
heapDeltaKb: 705
|
|
860
1040
|
},
|
|
861
1041
|
scripts: [
|
|
862
1042
|
{
|
|
@@ -864,7 +1044,7 @@ const vercelAnalytics = {
|
|
|
864
1044
|
transferKb: 1.6,
|
|
865
1045
|
decodedKb: 2.4,
|
|
866
1046
|
encoding: "br",
|
|
867
|
-
durationMs:
|
|
1047
|
+
durationMs: 72,
|
|
868
1048
|
initiatorType: "script",
|
|
869
1049
|
protocol: "unknown"
|
|
870
1050
|
}
|
|
@@ -873,7 +1053,7 @@ const vercelAnalytics = {
|
|
|
873
1053
|
const bingUet = {
|
|
874
1054
|
totalTransferKb: 16.2,
|
|
875
1055
|
totalDecodedKb: 54,
|
|
876
|
-
loadTimeMs:
|
|
1056
|
+
loadTimeMs: 219,
|
|
877
1057
|
collectsWebVitals: false,
|
|
878
1058
|
apis: {
|
|
879
1059
|
cookies: true,
|
|
@@ -884,11 +1064,26 @@ const bingUet = {
|
|
|
884
1064
|
webgl: false,
|
|
885
1065
|
audioContext: false,
|
|
886
1066
|
userAgent: true,
|
|
1067
|
+
doNotTrack: false,
|
|
887
1068
|
hardwareConcurrency: false,
|
|
888
1069
|
deviceMemory: false,
|
|
889
1070
|
plugins: true,
|
|
890
1071
|
languages: true,
|
|
891
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,
|
|
892
1087
|
sendBeacon: true,
|
|
893
1088
|
fetch: false,
|
|
894
1089
|
xhr: true,
|
|
@@ -927,7 +1122,7 @@ const bingUet = {
|
|
|
927
1122
|
"bat.bing.com"
|
|
928
1123
|
],
|
|
929
1124
|
outboundBytes: 0,
|
|
930
|
-
inboundBytes:
|
|
1125
|
+
inboundBytes: 16549,
|
|
931
1126
|
injectedElements: [
|
|
932
1127
|
{
|
|
933
1128
|
tag: "script",
|
|
@@ -935,14 +1130,14 @@ const bingUet = {
|
|
|
935
1130
|
},
|
|
936
1131
|
{
|
|
937
1132
|
tag: "img",
|
|
938
|
-
src: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=
|
|
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=<=225&evt=pageLoad&sv=2&cdb=AQAQ&rn=579954"
|
|
939
1134
|
}
|
|
940
1135
|
]
|
|
941
1136
|
},
|
|
942
1137
|
performance: {
|
|
943
|
-
taskDurationMs:
|
|
944
|
-
scriptDurationMs:
|
|
945
|
-
heapDeltaKb:
|
|
1138
|
+
taskDurationMs: 24,
|
|
1139
|
+
scriptDurationMs: 17,
|
|
1140
|
+
heapDeltaKb: 918
|
|
946
1141
|
},
|
|
947
1142
|
scripts: [
|
|
948
1143
|
{
|
|
@@ -950,7 +1145,7 @@ const bingUet = {
|
|
|
950
1145
|
transferKb: 15.4,
|
|
951
1146
|
decodedKb: 53.6,
|
|
952
1147
|
encoding: "gzip",
|
|
953
|
-
durationMs:
|
|
1148
|
+
durationMs: 219,
|
|
954
1149
|
initiatorType: "script",
|
|
955
1150
|
protocol: "unknown"
|
|
956
1151
|
},
|
|
@@ -959,16 +1154,16 @@ const bingUet = {
|
|
|
959
1154
|
transferKb: 0.4,
|
|
960
1155
|
decodedKb: 0.4,
|
|
961
1156
|
encoding: "br",
|
|
962
|
-
durationMs:
|
|
1157
|
+
durationMs: 157,
|
|
963
1158
|
initiatorType: "script",
|
|
964
1159
|
protocol: "unknown"
|
|
965
1160
|
},
|
|
966
1161
|
{
|
|
967
|
-
url: "https://bat.bing.com/action/0?ti=247021147&Ver=2&mid=
|
|
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=<=225&evt=pageLoad&sv=2&cdb=AQAQ&rn=579954",
|
|
968
1163
|
transferKb: 0.4,
|
|
969
1164
|
decodedKb: 0,
|
|
970
1165
|
encoding: "none",
|
|
971
|
-
durationMs:
|
|
1166
|
+
durationMs: 157,
|
|
972
1167
|
initiatorType: "img",
|
|
973
1168
|
protocol: "unknown"
|
|
974
1169
|
}
|
|
@@ -977,7 +1172,7 @@ const bingUet = {
|
|
|
977
1172
|
const metaPixel = {
|
|
978
1173
|
totalTransferKb: 97.1,
|
|
979
1174
|
totalDecodedKb: 364.7,
|
|
980
|
-
loadTimeMs:
|
|
1175
|
+
loadTimeMs: 231,
|
|
981
1176
|
collectsWebVitals: false,
|
|
982
1177
|
apis: {
|
|
983
1178
|
cookies: true,
|
|
@@ -988,11 +1183,26 @@ const metaPixel = {
|
|
|
988
1183
|
webgl: false,
|
|
989
1184
|
audioContext: false,
|
|
990
1185
|
userAgent: true,
|
|
1186
|
+
doNotTrack: false,
|
|
991
1187
|
hardwareConcurrency: false,
|
|
992
1188
|
deviceMemory: false,
|
|
993
1189
|
plugins: false,
|
|
994
1190
|
languages: false,
|
|
995
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,
|
|
996
1206
|
sendBeacon: true,
|
|
997
1207
|
fetch: true,
|
|
998
1208
|
xhr: false,
|
|
@@ -1010,7 +1220,7 @@ const metaPixel = {
|
|
|
1010
1220
|
"www.facebook.com"
|
|
1011
1221
|
],
|
|
1012
1222
|
outboundBytes: 0,
|
|
1013
|
-
inboundBytes:
|
|
1223
|
+
inboundBytes: 102426,
|
|
1014
1224
|
injectedElements: [
|
|
1015
1225
|
{
|
|
1016
1226
|
tag: "script",
|
|
@@ -1019,9 +1229,9 @@ const metaPixel = {
|
|
|
1019
1229
|
]
|
|
1020
1230
|
},
|
|
1021
1231
|
performance: {
|
|
1022
|
-
taskDurationMs:
|
|
1023
|
-
scriptDurationMs:
|
|
1024
|
-
heapDeltaKb:
|
|
1232
|
+
taskDurationMs: 36,
|
|
1233
|
+
scriptDurationMs: 23,
|
|
1234
|
+
heapDeltaKb: 1956
|
|
1025
1235
|
},
|
|
1026
1236
|
scripts: [
|
|
1027
1237
|
{
|
|
@@ -1029,7 +1239,7 @@ const metaPixel = {
|
|
|
1029
1239
|
transferKb: 94.7,
|
|
1030
1240
|
decodedKb: 356.5,
|
|
1031
1241
|
encoding: "gzip",
|
|
1032
|
-
durationMs:
|
|
1242
|
+
durationMs: 114,
|
|
1033
1243
|
initiatorType: "script",
|
|
1034
1244
|
protocol: "h2"
|
|
1035
1245
|
},
|
|
@@ -1038,16 +1248,16 @@ const metaPixel = {
|
|
|
1038
1248
|
transferKb: 2.1,
|
|
1039
1249
|
decodedKb: 8.2,
|
|
1040
1250
|
encoding: "gzip",
|
|
1041
|
-
durationMs:
|
|
1251
|
+
durationMs: 231,
|
|
1042
1252
|
initiatorType: "script",
|
|
1043
1253
|
protocol: "h2"
|
|
1044
1254
|
},
|
|
1045
1255
|
{
|
|
1046
|
-
url: "https://www.facebook.com/tr/?id=3925006&ev=PageView&dl=http%3A%2F%2F127.0.0.1%
|
|
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",
|
|
1047
1257
|
transferKb: 0.3,
|
|
1048
1258
|
decodedKb: 0,
|
|
1049
1259
|
encoding: "none",
|
|
1050
|
-
durationMs:
|
|
1260
|
+
durationMs: 77,
|
|
1051
1261
|
initiatorType: "img",
|
|
1052
1262
|
protocol: "unknown"
|
|
1053
1263
|
}
|
|
@@ -1056,7 +1266,7 @@ const metaPixel = {
|
|
|
1056
1266
|
const xPixel = {
|
|
1057
1267
|
totalTransferKb: 15.1,
|
|
1058
1268
|
totalDecodedKb: 47.1,
|
|
1059
|
-
loadTimeMs:
|
|
1269
|
+
loadTimeMs: 247,
|
|
1060
1270
|
collectsWebVitals: false,
|
|
1061
1271
|
apis: {
|
|
1062
1272
|
cookies: true,
|
|
@@ -1067,11 +1277,26 @@ const xPixel = {
|
|
|
1067
1277
|
webgl: false,
|
|
1068
1278
|
audioContext: false,
|
|
1069
1279
|
userAgent: true,
|
|
1280
|
+
doNotTrack: true,
|
|
1070
1281
|
hardwareConcurrency: true,
|
|
1071
1282
|
deviceMemory: false,
|
|
1072
1283
|
plugins: false,
|
|
1073
1284
|
languages: true,
|
|
1074
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,
|
|
1075
1300
|
sendBeacon: true,
|
|
1076
1301
|
fetch: false,
|
|
1077
1302
|
xhr: true,
|
|
@@ -1145,22 +1370,22 @@ const xPixel = {
|
|
|
1145
1370
|
"t.co"
|
|
1146
1371
|
],
|
|
1147
1372
|
outboundBytes: 0,
|
|
1148
|
-
inboundBytes:
|
|
1373
|
+
inboundBytes: 15458,
|
|
1149
1374
|
injectedElements: [
|
|
1150
1375
|
{
|
|
1151
1376
|
tag: "img",
|
|
1152
|
-
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=
|
|
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"
|
|
1153
1378
|
},
|
|
1154
1379
|
{
|
|
1155
1380
|
tag: "img",
|
|
1156
|
-
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=
|
|
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"
|
|
1157
1382
|
}
|
|
1158
1383
|
]
|
|
1159
1384
|
},
|
|
1160
1385
|
performance: {
|
|
1161
|
-
taskDurationMs:
|
|
1162
|
-
scriptDurationMs:
|
|
1163
|
-
heapDeltaKb:
|
|
1386
|
+
taskDurationMs: 23,
|
|
1387
|
+
scriptDurationMs: 5,
|
|
1388
|
+
heapDeltaKb: 1030
|
|
1164
1389
|
},
|
|
1165
1390
|
scripts: [
|
|
1166
1391
|
{
|
|
@@ -1168,25 +1393,25 @@ const xPixel = {
|
|
|
1168
1393
|
transferKb: 13.5,
|
|
1169
1394
|
decodedKb: 47.1,
|
|
1170
1395
|
encoding: "gzip",
|
|
1171
|
-
durationMs:
|
|
1396
|
+
durationMs: 72,
|
|
1172
1397
|
initiatorType: "script",
|
|
1173
1398
|
protocol: "unknown"
|
|
1174
1399
|
},
|
|
1175
1400
|
{
|
|
1176
|
-
url: "https://
|
|
1177
|
-
transferKb:
|
|
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,
|
|
1178
1403
|
decodedKb: 0,
|
|
1179
1404
|
encoding: "none",
|
|
1180
|
-
durationMs:
|
|
1405
|
+
durationMs: 247,
|
|
1181
1406
|
initiatorType: "img",
|
|
1182
1407
|
protocol: "unknown"
|
|
1183
1408
|
},
|
|
1184
1409
|
{
|
|
1185
|
-
url: "https://
|
|
1186
|
-
transferKb:
|
|
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,
|
|
1187
1412
|
decodedKb: 0,
|
|
1188
1413
|
encoding: "none",
|
|
1189
|
-
durationMs:
|
|
1414
|
+
durationMs: 232,
|
|
1190
1415
|
initiatorType: "img",
|
|
1191
1416
|
protocol: "unknown"
|
|
1192
1417
|
}
|
|
@@ -1195,7 +1420,7 @@ const xPixel = {
|
|
|
1195
1420
|
const tiktokPixel = {
|
|
1196
1421
|
totalTransferKb: 148,
|
|
1197
1422
|
totalDecodedKb: 623,
|
|
1198
|
-
loadTimeMs:
|
|
1423
|
+
loadTimeMs: 271,
|
|
1199
1424
|
collectsWebVitals: true,
|
|
1200
1425
|
apis: {
|
|
1201
1426
|
cookies: true,
|
|
@@ -1206,11 +1431,26 @@ const tiktokPixel = {
|
|
|
1206
1431
|
webgl: false,
|
|
1207
1432
|
audioContext: false,
|
|
1208
1433
|
userAgent: true,
|
|
1434
|
+
doNotTrack: false,
|
|
1209
1435
|
hardwareConcurrency: false,
|
|
1210
1436
|
deviceMemory: false,
|
|
1211
1437
|
plugins: false,
|
|
1212
1438
|
languages: false,
|
|
1213
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,
|
|
1214
1454
|
sendBeacon: true,
|
|
1215
1455
|
fetch: false,
|
|
1216
1456
|
xhr: false,
|
|
@@ -1238,7 +1478,7 @@ const tiktokPixel = {
|
|
|
1238
1478
|
"analytics.tiktok.com"
|
|
1239
1479
|
],
|
|
1240
1480
|
outboundBytes: 0,
|
|
1241
|
-
inboundBytes:
|
|
1481
|
+
inboundBytes: 151545,
|
|
1242
1482
|
injectedElements: [
|
|
1243
1483
|
{
|
|
1244
1484
|
tag: "script",
|
|
@@ -1251,17 +1491,17 @@ const tiktokPixel = {
|
|
|
1251
1491
|
]
|
|
1252
1492
|
},
|
|
1253
1493
|
performance: {
|
|
1254
|
-
taskDurationMs:
|
|
1255
|
-
scriptDurationMs:
|
|
1256
|
-
heapDeltaKb:
|
|
1494
|
+
taskDurationMs: 58,
|
|
1495
|
+
scriptDurationMs: 31,
|
|
1496
|
+
heapDeltaKb: 2284
|
|
1257
1497
|
},
|
|
1258
1498
|
scripts: [
|
|
1259
1499
|
{
|
|
1260
1500
|
url: "https://analytics.tiktok.com/i18n/pixel/events.js",
|
|
1261
|
-
transferKb: 2.
|
|
1501
|
+
transferKb: 2.6,
|
|
1262
1502
|
decodedKb: 7.6,
|
|
1263
1503
|
encoding: "gzip",
|
|
1264
|
-
durationMs:
|
|
1504
|
+
durationMs: 271,
|
|
1265
1505
|
initiatorType: "script",
|
|
1266
1506
|
protocol: "unknown"
|
|
1267
1507
|
},
|
|
@@ -1270,16 +1510,16 @@ const tiktokPixel = {
|
|
|
1270
1510
|
transferKb: 105.8,
|
|
1271
1511
|
decodedKb: 463.4,
|
|
1272
1512
|
encoding: "gzip",
|
|
1273
|
-
durationMs:
|
|
1513
|
+
durationMs: 49,
|
|
1274
1514
|
initiatorType: "script",
|
|
1275
1515
|
protocol: "unknown"
|
|
1276
1516
|
},
|
|
1277
1517
|
{
|
|
1278
1518
|
url: "https://analytics.tiktok.com/i18n/pixel/static/identify_31760074.js",
|
|
1279
|
-
transferKb: 39.
|
|
1519
|
+
transferKb: 39.6,
|
|
1280
1520
|
decodedKb: 152,
|
|
1281
1521
|
encoding: "gzip",
|
|
1282
|
-
durationMs:
|
|
1522
|
+
durationMs: 18,
|
|
1283
1523
|
initiatorType: "script",
|
|
1284
1524
|
protocol: "unknown"
|
|
1285
1525
|
}
|
|
@@ -1288,7 +1528,7 @@ const tiktokPixel = {
|
|
|
1288
1528
|
const snapchatPixel = {
|
|
1289
1529
|
totalTransferKb: 1.3,
|
|
1290
1530
|
totalDecodedKb: 58.2,
|
|
1291
|
-
loadTimeMs:
|
|
1531
|
+
loadTimeMs: 586,
|
|
1292
1532
|
collectsWebVitals: false,
|
|
1293
1533
|
apis: {
|
|
1294
1534
|
cookies: true,
|
|
@@ -1299,11 +1539,26 @@ const snapchatPixel = {
|
|
|
1299
1539
|
webgl: false,
|
|
1300
1540
|
audioContext: false,
|
|
1301
1541
|
userAgent: true,
|
|
1542
|
+
doNotTrack: false,
|
|
1302
1543
|
hardwareConcurrency: false,
|
|
1303
1544
|
deviceMemory: false,
|
|
1304
1545
|
plugins: false,
|
|
1305
1546
|
languages: false,
|
|
1306
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,
|
|
1307
1562
|
sendBeacon: true,
|
|
1308
1563
|
fetch: true,
|
|
1309
1564
|
xhr: true,
|
|
@@ -1376,15 +1631,15 @@ const snapchatPixel = {
|
|
|
1376
1631
|
"sc-static.net",
|
|
1377
1632
|
"tr.snapchat.com"
|
|
1378
1633
|
],
|
|
1379
|
-
outboundBytes:
|
|
1380
|
-
inboundBytes:
|
|
1634
|
+
outboundBytes: 1708,
|
|
1635
|
+
inboundBytes: 26697,
|
|
1381
1636
|
injectedElements: [
|
|
1382
1637
|
]
|
|
1383
1638
|
},
|
|
1384
1639
|
performance: {
|
|
1385
|
-
taskDurationMs:
|
|
1386
|
-
scriptDurationMs:
|
|
1387
|
-
heapDeltaKb:
|
|
1640
|
+
taskDurationMs: 44,
|
|
1641
|
+
scriptDurationMs: 22,
|
|
1642
|
+
heapDeltaKb: 2350
|
|
1388
1643
|
},
|
|
1389
1644
|
scripts: [
|
|
1390
1645
|
{
|
|
@@ -1392,7 +1647,7 @@ const snapchatPixel = {
|
|
|
1392
1647
|
transferKb: 0,
|
|
1393
1648
|
decodedKb: 57.4,
|
|
1394
1649
|
encoding: "gzip",
|
|
1395
|
-
durationMs:
|
|
1650
|
+
durationMs: 586,
|
|
1396
1651
|
initiatorType: "script",
|
|
1397
1652
|
protocol: "unknown"
|
|
1398
1653
|
},
|
|
@@ -1401,16 +1656,16 @@ const snapchatPixel = {
|
|
|
1401
1656
|
transferKb: 0.3,
|
|
1402
1657
|
decodedKb: 0.1,
|
|
1403
1658
|
encoding: "none",
|
|
1404
|
-
durationMs:
|
|
1659
|
+
durationMs: 397,
|
|
1405
1660
|
initiatorType: "fetch",
|
|
1406
1661
|
protocol: "unknown"
|
|
1407
1662
|
},
|
|
1408
1663
|
{
|
|
1409
|
-
url: "https://tr.snapchat.com/cm/i?pid=2295cbcc-cb3f-4727-8c09-1133b742722c&u_scsid=
|
|
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",
|
|
1410
1665
|
transferKb: 1,
|
|
1411
1666
|
decodedKb: 0.7,
|
|
1412
1667
|
encoding: "none",
|
|
1413
|
-
durationMs:
|
|
1668
|
+
durationMs: 190,
|
|
1414
1669
|
initiatorType: "iframe",
|
|
1415
1670
|
protocol: "unknown"
|
|
1416
1671
|
},
|
|
@@ -1419,7 +1674,7 @@ const snapchatPixel = {
|
|
|
1419
1674
|
transferKb: 0,
|
|
1420
1675
|
decodedKb: 0,
|
|
1421
1676
|
encoding: "none",
|
|
1422
|
-
durationMs:
|
|
1677
|
+
durationMs: 120,
|
|
1423
1678
|
initiatorType: "beacon",
|
|
1424
1679
|
protocol: "unknown"
|
|
1425
1680
|
}
|
|
@@ -1428,7 +1683,7 @@ const snapchatPixel = {
|
|
|
1428
1683
|
const redditPixel = {
|
|
1429
1684
|
totalTransferKb: 19.5,
|
|
1430
1685
|
totalDecodedKb: 65.3,
|
|
1431
|
-
loadTimeMs:
|
|
1686
|
+
loadTimeMs: 326,
|
|
1432
1687
|
collectsWebVitals: false,
|
|
1433
1688
|
apis: {
|
|
1434
1689
|
cookies: true,
|
|
@@ -1439,11 +1694,26 @@ const redditPixel = {
|
|
|
1439
1694
|
webgl: false,
|
|
1440
1695
|
audioContext: false,
|
|
1441
1696
|
userAgent: false,
|
|
1697
|
+
doNotTrack: false,
|
|
1442
1698
|
hardwareConcurrency: false,
|
|
1443
1699
|
deviceMemory: false,
|
|
1444
1700
|
plugins: false,
|
|
1445
1701
|
languages: false,
|
|
1446
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,
|
|
1447
1717
|
sendBeacon: false,
|
|
1448
1718
|
fetch: true,
|
|
1449
1719
|
xhr: true,
|
|
@@ -1462,14 +1732,14 @@ const redditPixel = {
|
|
|
1462
1732
|
"www.redditstatic.com"
|
|
1463
1733
|
],
|
|
1464
1734
|
outboundBytes: 0,
|
|
1465
|
-
inboundBytes:
|
|
1735
|
+
inboundBytes: 20080,
|
|
1466
1736
|
injectedElements: [
|
|
1467
1737
|
]
|
|
1468
1738
|
},
|
|
1469
1739
|
performance: {
|
|
1470
|
-
taskDurationMs:
|
|
1471
|
-
scriptDurationMs:
|
|
1472
|
-
heapDeltaKb:
|
|
1740
|
+
taskDurationMs: 13,
|
|
1741
|
+
scriptDurationMs: 6,
|
|
1742
|
+
heapDeltaKb: 978
|
|
1473
1743
|
},
|
|
1474
1744
|
scripts: [
|
|
1475
1745
|
{
|
|
@@ -1486,16 +1756,16 @@ const redditPixel = {
|
|
|
1486
1756
|
transferKb: 0.1,
|
|
1487
1757
|
decodedKb: 0,
|
|
1488
1758
|
encoding: "gzip",
|
|
1489
|
-
durationMs:
|
|
1759
|
+
durationMs: 114,
|
|
1490
1760
|
initiatorType: "xmlhttprequest",
|
|
1491
1761
|
protocol: "unknown"
|
|
1492
1762
|
},
|
|
1493
1763
|
{
|
|
1494
|
-
url: "https://alb.reddit.com/rp.gif?ts=
|
|
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=",
|
|
1495
1765
|
transferKb: 0.6,
|
|
1496
1766
|
decodedKb: 0,
|
|
1497
1767
|
encoding: "none",
|
|
1498
|
-
durationMs:
|
|
1768
|
+
durationMs: 326,
|
|
1499
1769
|
initiatorType: "img",
|
|
1500
1770
|
protocol: "unknown"
|
|
1501
1771
|
}
|
|
@@ -1503,8 +1773,8 @@ const redditPixel = {
|
|
|
1503
1773
|
};
|
|
1504
1774
|
const googleAdsense = {
|
|
1505
1775
|
totalTransferKb: 63,
|
|
1506
|
-
totalDecodedKb: 191.
|
|
1507
|
-
loadTimeMs:
|
|
1776
|
+
totalDecodedKb: 191.1,
|
|
1777
|
+
loadTimeMs: 296,
|
|
1508
1778
|
collectsWebVitals: true,
|
|
1509
1779
|
apis: {
|
|
1510
1780
|
cookies: true,
|
|
@@ -1515,11 +1785,26 @@ const googleAdsense = {
|
|
|
1515
1785
|
webgl: false,
|
|
1516
1786
|
audioContext: false,
|
|
1517
1787
|
userAgent: true,
|
|
1788
|
+
doNotTrack: false,
|
|
1518
1789
|
hardwareConcurrency: false,
|
|
1519
1790
|
deviceMemory: false,
|
|
1520
1791
|
plugins: false,
|
|
1521
1792
|
languages: false,
|
|
1522
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,
|
|
1523
1808
|
sendBeacon: false,
|
|
1524
1809
|
fetch: true,
|
|
1525
1810
|
xhr: true,
|
|
@@ -1536,22 +1821,22 @@ const googleAdsense = {
|
|
|
1536
1821
|
"pagead2.googlesyndication.com"
|
|
1537
1822
|
],
|
|
1538
1823
|
outboundBytes: 0,
|
|
1539
|
-
inboundBytes:
|
|
1824
|
+
inboundBytes: 64705,
|
|
1540
1825
|
injectedElements: [
|
|
1541
1826
|
]
|
|
1542
1827
|
},
|
|
1543
1828
|
performance: {
|
|
1544
|
-
taskDurationMs:
|
|
1545
|
-
scriptDurationMs:
|
|
1546
|
-
heapDeltaKb:
|
|
1829
|
+
taskDurationMs: 15,
|
|
1830
|
+
scriptDurationMs: 7,
|
|
1831
|
+
heapDeltaKb: 1805
|
|
1547
1832
|
},
|
|
1548
1833
|
scripts: [
|
|
1549
1834
|
{
|
|
1550
1835
|
url: "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js",
|
|
1551
1836
|
transferKb: 63,
|
|
1552
|
-
decodedKb: 191.
|
|
1837
|
+
decodedKb: 191.1,
|
|
1553
1838
|
encoding: "br",
|
|
1554
|
-
durationMs:
|
|
1839
|
+
durationMs: 296,
|
|
1555
1840
|
initiatorType: "script",
|
|
1556
1841
|
protocol: "h2"
|
|
1557
1842
|
}
|
|
@@ -1560,7 +1845,7 @@ const googleAdsense = {
|
|
|
1560
1845
|
const carbonAds = {
|
|
1561
1846
|
totalTransferKb: 10.4,
|
|
1562
1847
|
totalDecodedKb: 34.5,
|
|
1563
|
-
loadTimeMs:
|
|
1848
|
+
loadTimeMs: 74,
|
|
1564
1849
|
collectsWebVitals: false,
|
|
1565
1850
|
apis: {
|
|
1566
1851
|
cookies: true,
|
|
@@ -1571,11 +1856,26 @@ const carbonAds = {
|
|
|
1571
1856
|
webgl: false,
|
|
1572
1857
|
audioContext: false,
|
|
1573
1858
|
userAgent: false,
|
|
1859
|
+
doNotTrack: false,
|
|
1574
1860
|
hardwareConcurrency: false,
|
|
1575
1861
|
deviceMemory: false,
|
|
1576
1862
|
plugins: false,
|
|
1577
1863
|
languages: false,
|
|
1578
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,
|
|
1579
1879
|
sendBeacon: false,
|
|
1580
1880
|
fetch: true,
|
|
1581
1881
|
xhr: false,
|
|
@@ -1592,14 +1892,14 @@ const carbonAds = {
|
|
|
1592
1892
|
"cdn.carbonads.com"
|
|
1593
1893
|
],
|
|
1594
1894
|
outboundBytes: 0,
|
|
1595
|
-
inboundBytes:
|
|
1895
|
+
inboundBytes: 10652,
|
|
1596
1896
|
injectedElements: [
|
|
1597
1897
|
]
|
|
1598
1898
|
},
|
|
1599
1899
|
performance: {
|
|
1600
|
-
taskDurationMs:
|
|
1900
|
+
taskDurationMs: 7,
|
|
1601
1901
|
scriptDurationMs: 1,
|
|
1602
|
-
heapDeltaKb:
|
|
1902
|
+
heapDeltaKb: 718
|
|
1603
1903
|
},
|
|
1604
1904
|
scripts: [
|
|
1605
1905
|
{
|
|
@@ -1607,7 +1907,7 @@ const carbonAds = {
|
|
|
1607
1907
|
transferKb: 10.4,
|
|
1608
1908
|
decodedKb: 34.5,
|
|
1609
1909
|
encoding: "gzip",
|
|
1610
|
-
durationMs:
|
|
1910
|
+
durationMs: 74,
|
|
1611
1911
|
initiatorType: "script",
|
|
1612
1912
|
protocol: "unknown"
|
|
1613
1913
|
}
|
|
@@ -1616,7 +1916,7 @@ const carbonAds = {
|
|
|
1616
1916
|
const hotjar = {
|
|
1617
1917
|
totalTransferKb: 6.2,
|
|
1618
1918
|
totalDecodedKb: 15,
|
|
1619
|
-
loadTimeMs:
|
|
1919
|
+
loadTimeMs: 339,
|
|
1620
1920
|
collectsWebVitals: false,
|
|
1621
1921
|
apis: {
|
|
1622
1922
|
cookies: true,
|
|
@@ -1627,11 +1927,26 @@ const hotjar = {
|
|
|
1627
1927
|
webgl: false,
|
|
1628
1928
|
audioContext: false,
|
|
1629
1929
|
userAgent: true,
|
|
1930
|
+
doNotTrack: true,
|
|
1630
1931
|
hardwareConcurrency: false,
|
|
1631
1932
|
deviceMemory: false,
|
|
1632
1933
|
plugins: false,
|
|
1633
1934
|
languages: true,
|
|
1634
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,
|
|
1635
1950
|
sendBeacon: true,
|
|
1636
1951
|
fetch: false,
|
|
1637
1952
|
xhr: true,
|
|
@@ -1648,14 +1963,14 @@ const hotjar = {
|
|
|
1648
1963
|
"static.hotjar.com"
|
|
1649
1964
|
],
|
|
1650
1965
|
outboundBytes: 0,
|
|
1651
|
-
inboundBytes:
|
|
1966
|
+
inboundBytes: 6330,
|
|
1652
1967
|
injectedElements: [
|
|
1653
1968
|
]
|
|
1654
1969
|
},
|
|
1655
1970
|
performance: {
|
|
1656
|
-
taskDurationMs:
|
|
1971
|
+
taskDurationMs: 8,
|
|
1657
1972
|
scriptDurationMs: 1,
|
|
1658
|
-
heapDeltaKb:
|
|
1973
|
+
heapDeltaKb: 742
|
|
1659
1974
|
},
|
|
1660
1975
|
scripts: [
|
|
1661
1976
|
{
|
|
@@ -1663,16 +1978,16 @@ const hotjar = {
|
|
|
1663
1978
|
transferKb: 6.2,
|
|
1664
1979
|
decodedKb: 15,
|
|
1665
1980
|
encoding: "br",
|
|
1666
|
-
durationMs:
|
|
1981
|
+
durationMs: 339,
|
|
1667
1982
|
initiatorType: "script",
|
|
1668
1983
|
protocol: "unknown"
|
|
1669
1984
|
}
|
|
1670
1985
|
]
|
|
1671
1986
|
};
|
|
1672
1987
|
const clarity = {
|
|
1673
|
-
totalTransferKb: 27.
|
|
1988
|
+
totalTransferKb: 27.3,
|
|
1674
1989
|
totalDecodedKb: 80.2,
|
|
1675
|
-
loadTimeMs:
|
|
1990
|
+
loadTimeMs: 628,
|
|
1676
1991
|
collectsWebVitals: true,
|
|
1677
1992
|
apis: {
|
|
1678
1993
|
cookies: true,
|
|
@@ -1683,11 +1998,26 @@ const clarity = {
|
|
|
1683
1998
|
webgl: false,
|
|
1684
1999
|
audioContext: false,
|
|
1685
2000
|
userAgent: true,
|
|
2001
|
+
doNotTrack: false,
|
|
1686
2002
|
hardwareConcurrency: true,
|
|
1687
2003
|
deviceMemory: true,
|
|
1688
2004
|
plugins: false,
|
|
1689
2005
|
languages: true,
|
|
1690
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,
|
|
1691
2021
|
sendBeacon: true,
|
|
1692
2022
|
fetch: false,
|
|
1693
2023
|
xhr: true,
|
|
@@ -1705,8 +2035,8 @@ const clarity = {
|
|
|
1705
2035
|
"scripts.clarity.ms",
|
|
1706
2036
|
"www.clarity.ms"
|
|
1707
2037
|
],
|
|
1708
|
-
outboundBytes:
|
|
1709
|
-
inboundBytes:
|
|
2038
|
+
outboundBytes: 764,
|
|
2039
|
+
inboundBytes: 27893,
|
|
1710
2040
|
injectedElements: [
|
|
1711
2041
|
{
|
|
1712
2042
|
tag: "script",
|
|
@@ -1715,17 +2045,17 @@ const clarity = {
|
|
|
1715
2045
|
]
|
|
1716
2046
|
},
|
|
1717
2047
|
performance: {
|
|
1718
|
-
taskDurationMs:
|
|
1719
|
-
scriptDurationMs:
|
|
1720
|
-
heapDeltaKb:
|
|
2048
|
+
taskDurationMs: 27,
|
|
2049
|
+
scriptDurationMs: 16,
|
|
2050
|
+
heapDeltaKb: 1188
|
|
1721
2051
|
},
|
|
1722
2052
|
scripts: [
|
|
1723
2053
|
{
|
|
1724
2054
|
url: "https://www.clarity.ms/tag/mqk2m9dr2v",
|
|
1725
|
-
transferKb: 0.
|
|
2055
|
+
transferKb: 0.9,
|
|
1726
2056
|
decodedKb: 0.6,
|
|
1727
2057
|
encoding: "none",
|
|
1728
|
-
durationMs:
|
|
2058
|
+
durationMs: 364,
|
|
1729
2059
|
initiatorType: "script",
|
|
1730
2060
|
protocol: "unknown"
|
|
1731
2061
|
},
|
|
@@ -1734,7 +2064,7 @@ const clarity = {
|
|
|
1734
2064
|
transferKb: 26.1,
|
|
1735
2065
|
decodedKb: 79.6,
|
|
1736
2066
|
encoding: "br",
|
|
1737
|
-
durationMs:
|
|
2067
|
+
durationMs: 129,
|
|
1738
2068
|
initiatorType: "script",
|
|
1739
2069
|
protocol: "unknown"
|
|
1740
2070
|
},
|
|
@@ -1743,16 +2073,16 @@ const clarity = {
|
|
|
1743
2073
|
transferKb: 0.3,
|
|
1744
2074
|
decodedKb: 0,
|
|
1745
2075
|
encoding: "none",
|
|
1746
|
-
durationMs:
|
|
2076
|
+
durationMs: 628,
|
|
1747
2077
|
initiatorType: "xmlhttprequest",
|
|
1748
2078
|
protocol: "unknown"
|
|
1749
2079
|
}
|
|
1750
2080
|
]
|
|
1751
2081
|
};
|
|
1752
2082
|
const googleTagManager = {
|
|
1753
|
-
totalTransferKb: 108.
|
|
1754
|
-
totalDecodedKb:
|
|
1755
|
-
loadTimeMs:
|
|
2083
|
+
totalTransferKb: 108.6,
|
|
2084
|
+
totalDecodedKb: 302.5,
|
|
2085
|
+
loadTimeMs: 477,
|
|
1756
2086
|
collectsWebVitals: false,
|
|
1757
2087
|
apis: {
|
|
1758
2088
|
cookies: true,
|
|
@@ -1763,11 +2093,26 @@ const googleTagManager = {
|
|
|
1763
2093
|
webgl: false,
|
|
1764
2094
|
audioContext: false,
|
|
1765
2095
|
userAgent: true,
|
|
2096
|
+
doNotTrack: false,
|
|
1766
2097
|
hardwareConcurrency: false,
|
|
1767
2098
|
deviceMemory: false,
|
|
1768
2099
|
plugins: false,
|
|
1769
2100
|
languages: false,
|
|
1770
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,
|
|
1771
2116
|
sendBeacon: true,
|
|
1772
2117
|
fetch: true,
|
|
1773
2118
|
xhr: true,
|
|
@@ -1784,22 +2129,22 @@ const googleTagManager = {
|
|
|
1784
2129
|
"www.googletagmanager.com"
|
|
1785
2130
|
],
|
|
1786
2131
|
outboundBytes: 0,
|
|
1787
|
-
inboundBytes:
|
|
2132
|
+
inboundBytes: 111257,
|
|
1788
2133
|
injectedElements: [
|
|
1789
2134
|
]
|
|
1790
2135
|
},
|
|
1791
2136
|
performance: {
|
|
1792
|
-
taskDurationMs:
|
|
1793
|
-
scriptDurationMs:
|
|
1794
|
-
heapDeltaKb:
|
|
2137
|
+
taskDurationMs: 16,
|
|
2138
|
+
scriptDurationMs: 6,
|
|
2139
|
+
heapDeltaKb: 1801
|
|
1795
2140
|
},
|
|
1796
2141
|
scripts: [
|
|
1797
2142
|
{
|
|
1798
2143
|
url: "https://www.googletagmanager.com/gtm.js?id=GTM-MWW974PF",
|
|
1799
|
-
transferKb: 108.
|
|
1800
|
-
decodedKb:
|
|
2144
|
+
transferKb: 108.6,
|
|
2145
|
+
decodedKb: 302.5,
|
|
1801
2146
|
encoding: "zstd",
|
|
1802
|
-
durationMs:
|
|
2147
|
+
durationMs: 477,
|
|
1803
2148
|
initiatorType: "script",
|
|
1804
2149
|
protocol: "unknown"
|
|
1805
2150
|
}
|
|
@@ -1808,7 +2153,7 @@ const googleTagManager = {
|
|
|
1808
2153
|
const intercom = {
|
|
1809
2154
|
totalTransferKb: 3.6,
|
|
1810
2155
|
totalDecodedKb: 7.4,
|
|
1811
|
-
loadTimeMs:
|
|
2156
|
+
loadTimeMs: 703,
|
|
1812
2157
|
collectsWebVitals: false,
|
|
1813
2158
|
apis: {
|
|
1814
2159
|
cookies: true,
|
|
@@ -1819,11 +2164,26 @@ const intercom = {
|
|
|
1819
2164
|
webgl: false,
|
|
1820
2165
|
audioContext: false,
|
|
1821
2166
|
userAgent: true,
|
|
2167
|
+
doNotTrack: false,
|
|
1822
2168
|
hardwareConcurrency: false,
|
|
1823
2169
|
deviceMemory: false,
|
|
1824
2170
|
plugins: false,
|
|
1825
2171
|
languages: false,
|
|
1826
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,
|
|
1827
2187
|
sendBeacon: false,
|
|
1828
2188
|
fetch: true,
|
|
1829
2189
|
xhr: true,
|
|
@@ -1840,14 +2200,14 @@ const intercom = {
|
|
|
1840
2200
|
"widget.intercom.io"
|
|
1841
2201
|
],
|
|
1842
2202
|
outboundBytes: 0,
|
|
1843
|
-
inboundBytes:
|
|
2203
|
+
inboundBytes: 3701,
|
|
1844
2204
|
injectedElements: [
|
|
1845
2205
|
]
|
|
1846
2206
|
},
|
|
1847
2207
|
performance: {
|
|
1848
2208
|
taskDurationMs: 6,
|
|
1849
2209
|
scriptDurationMs: 0,
|
|
1850
|
-
heapDeltaKb:
|
|
2210
|
+
heapDeltaKb: 712
|
|
1851
2211
|
},
|
|
1852
2212
|
scripts: [
|
|
1853
2213
|
{
|
|
@@ -1855,7 +2215,7 @@ const intercom = {
|
|
|
1855
2215
|
transferKb: 3.6,
|
|
1856
2216
|
decodedKb: 7.4,
|
|
1857
2217
|
encoding: "gzip",
|
|
1858
|
-
durationMs:
|
|
2218
|
+
durationMs: 703,
|
|
1859
2219
|
initiatorType: "script",
|
|
1860
2220
|
protocol: "unknown"
|
|
1861
2221
|
}
|
|
@@ -1864,7 +2224,7 @@ const intercom = {
|
|
|
1864
2224
|
const crisp = {
|
|
1865
2225
|
totalTransferKb: 3.3,
|
|
1866
2226
|
totalDecodedKb: 7.5,
|
|
1867
|
-
loadTimeMs:
|
|
2227
|
+
loadTimeMs: 156,
|
|
1868
2228
|
collectsWebVitals: false,
|
|
1869
2229
|
apis: {
|
|
1870
2230
|
cookies: true,
|
|
@@ -1875,11 +2235,26 @@ const crisp = {
|
|
|
1875
2235
|
webgl: false,
|
|
1876
2236
|
audioContext: true,
|
|
1877
2237
|
userAgent: true,
|
|
2238
|
+
doNotTrack: true,
|
|
1878
2239
|
hardwareConcurrency: false,
|
|
1879
2240
|
deviceMemory: false,
|
|
1880
2241
|
plugins: false,
|
|
1881
2242
|
languages: true,
|
|
1882
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,
|
|
1883
2258
|
sendBeacon: false,
|
|
1884
2259
|
fetch: true,
|
|
1885
2260
|
xhr: true,
|
|
@@ -1896,14 +2271,14 @@ const crisp = {
|
|
|
1896
2271
|
"client.crisp.chat"
|
|
1897
2272
|
],
|
|
1898
2273
|
outboundBytes: 0,
|
|
1899
|
-
inboundBytes:
|
|
2274
|
+
inboundBytes: 3376,
|
|
1900
2275
|
injectedElements: [
|
|
1901
2276
|
]
|
|
1902
2277
|
},
|
|
1903
2278
|
performance: {
|
|
1904
|
-
taskDurationMs:
|
|
2279
|
+
taskDurationMs: 7,
|
|
1905
2280
|
scriptDurationMs: 1,
|
|
1906
|
-
heapDeltaKb:
|
|
2281
|
+
heapDeltaKb: 726
|
|
1907
2282
|
},
|
|
1908
2283
|
scripts: [
|
|
1909
2284
|
{
|
|
@@ -1911,16 +2286,16 @@ const crisp = {
|
|
|
1911
2286
|
transferKb: 3.3,
|
|
1912
2287
|
decodedKb: 7.5,
|
|
1913
2288
|
encoding: "br",
|
|
1914
|
-
durationMs:
|
|
2289
|
+
durationMs: 156,
|
|
1915
2290
|
initiatorType: "script",
|
|
1916
2291
|
protocol: "unknown"
|
|
1917
2292
|
}
|
|
1918
2293
|
]
|
|
1919
2294
|
};
|
|
1920
2295
|
const stripe = {
|
|
1921
|
-
totalTransferKb:
|
|
1922
|
-
totalDecodedKb:
|
|
1923
|
-
loadTimeMs:
|
|
2296
|
+
totalTransferKb: 214,
|
|
2297
|
+
totalDecodedKb: 926.3,
|
|
2298
|
+
loadTimeMs: 181,
|
|
1924
2299
|
collectsWebVitals: false,
|
|
1925
2300
|
apis: {
|
|
1926
2301
|
cookies: true,
|
|
@@ -1931,11 +2306,26 @@ const stripe = {
|
|
|
1931
2306
|
webgl: false,
|
|
1932
2307
|
audioContext: false,
|
|
1933
2308
|
userAgent: true,
|
|
2309
|
+
doNotTrack: false,
|
|
1934
2310
|
hardwareConcurrency: false,
|
|
1935
2311
|
deviceMemory: false,
|
|
1936
2312
|
plugins: false,
|
|
1937
2313
|
languages: true,
|
|
1938
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,
|
|
1939
2329
|
sendBeacon: false,
|
|
1940
2330
|
fetch: true,
|
|
1941
2331
|
xhr: true,
|
|
@@ -1952,22 +2342,22 @@ const stripe = {
|
|
|
1952
2342
|
"js.stripe.com"
|
|
1953
2343
|
],
|
|
1954
2344
|
outboundBytes: 0,
|
|
1955
|
-
inboundBytes:
|
|
2345
|
+
inboundBytes: 219406,
|
|
1956
2346
|
injectedElements: [
|
|
1957
2347
|
]
|
|
1958
2348
|
},
|
|
1959
2349
|
performance: {
|
|
1960
|
-
taskDurationMs:
|
|
1961
|
-
scriptDurationMs:
|
|
1962
|
-
heapDeltaKb:
|
|
2350
|
+
taskDurationMs: 56,
|
|
2351
|
+
scriptDurationMs: 24,
|
|
2352
|
+
heapDeltaKb: 2336
|
|
1963
2353
|
},
|
|
1964
2354
|
scripts: [
|
|
1965
2355
|
{
|
|
1966
2356
|
url: "https://js.stripe.com/v3/",
|
|
1967
|
-
transferKb:
|
|
1968
|
-
decodedKb:
|
|
2357
|
+
transferKb: 214,
|
|
2358
|
+
decodedKb: 926.3,
|
|
1969
2359
|
encoding: "br",
|
|
1970
|
-
durationMs:
|
|
2360
|
+
durationMs: 181,
|
|
1971
2361
|
initiatorType: "script",
|
|
1972
2362
|
protocol: "h2"
|
|
1973
2363
|
}
|
|
@@ -1976,7 +2366,7 @@ const stripe = {
|
|
|
1976
2366
|
const lemonSqueezy = {
|
|
1977
2367
|
totalTransferKb: 1.8,
|
|
1978
2368
|
totalDecodedKb: 3.8,
|
|
1979
|
-
loadTimeMs:
|
|
2369
|
+
loadTimeMs: 115,
|
|
1980
2370
|
collectsWebVitals: false,
|
|
1981
2371
|
apis: {
|
|
1982
2372
|
cookies: true,
|
|
@@ -1987,11 +2377,26 @@ const lemonSqueezy = {
|
|
|
1987
2377
|
webgl: false,
|
|
1988
2378
|
audioContext: false,
|
|
1989
2379
|
userAgent: false,
|
|
2380
|
+
doNotTrack: false,
|
|
1990
2381
|
hardwareConcurrency: false,
|
|
1991
2382
|
deviceMemory: false,
|
|
1992
2383
|
plugins: false,
|
|
1993
2384
|
languages: false,
|
|
1994
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,
|
|
1995
2400
|
sendBeacon: false,
|
|
1996
2401
|
fetch: false,
|
|
1997
2402
|
xhr: false,
|
|
@@ -2008,14 +2413,14 @@ const lemonSqueezy = {
|
|
|
2008
2413
|
"assets.lemonsqueezy.com"
|
|
2009
2414
|
],
|
|
2010
2415
|
outboundBytes: 0,
|
|
2011
|
-
inboundBytes:
|
|
2416
|
+
inboundBytes: 1832,
|
|
2012
2417
|
injectedElements: [
|
|
2013
2418
|
]
|
|
2014
2419
|
},
|
|
2015
2420
|
performance: {
|
|
2016
|
-
taskDurationMs:
|
|
2421
|
+
taskDurationMs: 7,
|
|
2017
2422
|
scriptDurationMs: 0,
|
|
2018
|
-
heapDeltaKb:
|
|
2423
|
+
heapDeltaKb: 709
|
|
2019
2424
|
},
|
|
2020
2425
|
scripts: [
|
|
2021
2426
|
{
|
|
@@ -2023,7 +2428,7 @@ const lemonSqueezy = {
|
|
|
2023
2428
|
transferKb: 1.8,
|
|
2024
2429
|
decodedKb: 3.8,
|
|
2025
2430
|
encoding: "br",
|
|
2026
|
-
durationMs:
|
|
2431
|
+
durationMs: 115,
|
|
2027
2432
|
initiatorType: "script",
|
|
2028
2433
|
protocol: "unknown"
|
|
2029
2434
|
}
|
|
@@ -2032,7 +2437,7 @@ const lemonSqueezy = {
|
|
|
2032
2437
|
const paypal = {
|
|
2033
2438
|
totalTransferKb: 48.8,
|
|
2034
2439
|
totalDecodedKb: 148,
|
|
2035
|
-
loadTimeMs:
|
|
2440
|
+
loadTimeMs: 152,
|
|
2036
2441
|
collectsWebVitals: false,
|
|
2037
2442
|
apis: {
|
|
2038
2443
|
cookies: false,
|
|
@@ -2043,11 +2448,26 @@ const paypal = {
|
|
|
2043
2448
|
webgl: false,
|
|
2044
2449
|
audioContext: false,
|
|
2045
2450
|
userAgent: true,
|
|
2451
|
+
doNotTrack: false,
|
|
2046
2452
|
hardwareConcurrency: false,
|
|
2047
2453
|
deviceMemory: false,
|
|
2048
2454
|
plugins: false,
|
|
2049
2455
|
languages: true,
|
|
2050
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,
|
|
2051
2471
|
sendBeacon: true,
|
|
2052
2472
|
fetch: true,
|
|
2053
2473
|
xhr: false,
|
|
@@ -2064,14 +2484,14 @@ const paypal = {
|
|
|
2064
2484
|
"www.paypal.com"
|
|
2065
2485
|
],
|
|
2066
2486
|
outboundBytes: 0,
|
|
2067
|
-
inboundBytes:
|
|
2487
|
+
inboundBytes: 49994,
|
|
2068
2488
|
injectedElements: [
|
|
2069
2489
|
]
|
|
2070
2490
|
},
|
|
2071
2491
|
performance: {
|
|
2072
|
-
taskDurationMs:
|
|
2073
|
-
scriptDurationMs:
|
|
2074
|
-
heapDeltaKb:
|
|
2492
|
+
taskDurationMs: 26,
|
|
2493
|
+
scriptDurationMs: 15,
|
|
2494
|
+
heapDeltaKb: 1670
|
|
2075
2495
|
},
|
|
2076
2496
|
scripts: [
|
|
2077
2497
|
{
|
|
@@ -2079,7 +2499,7 @@ const paypal = {
|
|
|
2079
2499
|
transferKb: 48.8,
|
|
2080
2500
|
decodedKb: 148,
|
|
2081
2501
|
encoding: "gzip",
|
|
2082
|
-
durationMs:
|
|
2502
|
+
durationMs: 152,
|
|
2083
2503
|
initiatorType: "script",
|
|
2084
2504
|
protocol: "unknown"
|
|
2085
2505
|
}
|
|
@@ -2088,7 +2508,7 @@ const paypal = {
|
|
|
2088
2508
|
const vimeoPlayer = {
|
|
2089
2509
|
totalTransferKb: 8.9,
|
|
2090
2510
|
totalDecodedKb: 23.8,
|
|
2091
|
-
loadTimeMs:
|
|
2511
|
+
loadTimeMs: 91,
|
|
2092
2512
|
collectsWebVitals: false,
|
|
2093
2513
|
apis: {
|
|
2094
2514
|
cookies: false,
|
|
@@ -2099,11 +2519,26 @@ const vimeoPlayer = {
|
|
|
2099
2519
|
webgl: false,
|
|
2100
2520
|
audioContext: false,
|
|
2101
2521
|
userAgent: true,
|
|
2522
|
+
doNotTrack: false,
|
|
2102
2523
|
hardwareConcurrency: false,
|
|
2103
2524
|
deviceMemory: false,
|
|
2104
2525
|
plugins: false,
|
|
2105
2526
|
languages: false,
|
|
2106
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,
|
|
2107
2542
|
sendBeacon: false,
|
|
2108
2543
|
fetch: false,
|
|
2109
2544
|
xhr: true,
|
|
@@ -2148,8 +2583,8 @@ const vimeoPlayer = {
|
|
|
2148
2583
|
},
|
|
2149
2584
|
performance: {
|
|
2150
2585
|
taskDurationMs: 7,
|
|
2151
|
-
scriptDurationMs:
|
|
2152
|
-
heapDeltaKb:
|
|
2586
|
+
scriptDurationMs: 0,
|
|
2587
|
+
heapDeltaKb: 730
|
|
2153
2588
|
},
|
|
2154
2589
|
scripts: [
|
|
2155
2590
|
{
|
|
@@ -2157,16 +2592,16 @@ const vimeoPlayer = {
|
|
|
2157
2592
|
transferKb: 8.9,
|
|
2158
2593
|
decodedKb: 23.8,
|
|
2159
2594
|
encoding: "gzip",
|
|
2160
|
-
durationMs:
|
|
2595
|
+
durationMs: 91,
|
|
2161
2596
|
initiatorType: "script",
|
|
2162
2597
|
protocol: "unknown"
|
|
2163
2598
|
}
|
|
2164
2599
|
]
|
|
2165
2600
|
};
|
|
2166
2601
|
const youtubePlayer = {
|
|
2167
|
-
totalTransferKb:
|
|
2602
|
+
totalTransferKb: 14,
|
|
2168
2603
|
totalDecodedKb: 32.4,
|
|
2169
|
-
loadTimeMs:
|
|
2604
|
+
loadTimeMs: 341,
|
|
2170
2605
|
collectsWebVitals: false,
|
|
2171
2606
|
apis: {
|
|
2172
2607
|
cookies: false,
|
|
@@ -2177,11 +2612,26 @@ const youtubePlayer = {
|
|
|
2177
2612
|
webgl: false,
|
|
2178
2613
|
audioContext: false,
|
|
2179
2614
|
userAgent: true,
|
|
2615
|
+
doNotTrack: false,
|
|
2180
2616
|
hardwareConcurrency: false,
|
|
2181
2617
|
deviceMemory: false,
|
|
2182
2618
|
plugins: false,
|
|
2183
2619
|
languages: false,
|
|
2184
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,
|
|
2185
2635
|
sendBeacon: false,
|
|
2186
2636
|
fetch: false,
|
|
2187
2637
|
xhr: false,
|
|
@@ -2191,6 +2641,17 @@ const youtubePlayer = {
|
|
|
2191
2641
|
intersectionObserver: false
|
|
2192
2642
|
},
|
|
2193
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
|
+
},
|
|
2194
2655
|
{
|
|
2195
2656
|
name: "YSC",
|
|
2196
2657
|
domain: ".youtube.com",
|
|
@@ -2203,7 +2664,7 @@ const youtubePlayer = {
|
|
|
2203
2664
|
firstParty: false
|
|
2204
2665
|
},
|
|
2205
2666
|
{
|
|
2206
|
-
name: "
|
|
2667
|
+
name: "VISITOR_INFO1_LIVE",
|
|
2207
2668
|
domain: ".youtube.com",
|
|
2208
2669
|
path: "/",
|
|
2209
2670
|
httpOnly: true,
|
|
@@ -2214,7 +2675,7 @@ const youtubePlayer = {
|
|
|
2214
2675
|
firstParty: false
|
|
2215
2676
|
},
|
|
2216
2677
|
{
|
|
2217
|
-
name: "
|
|
2678
|
+
name: "VISITOR_PRIVACY_METADATA",
|
|
2218
2679
|
domain: ".youtube.com",
|
|
2219
2680
|
path: "/",
|
|
2220
2681
|
httpOnly: true,
|
|
@@ -2225,7 +2686,7 @@ const youtubePlayer = {
|
|
|
2225
2686
|
firstParty: false
|
|
2226
2687
|
},
|
|
2227
2688
|
{
|
|
2228
|
-
name: "
|
|
2689
|
+
name: "__Secure-ROLLOUT_TOKEN",
|
|
2229
2690
|
domain: ".youtube.com",
|
|
2230
2691
|
path: "/",
|
|
2231
2692
|
httpOnly: true,
|
|
@@ -2242,35 +2703,35 @@ const youtubePlayer = {
|
|
|
2242
2703
|
"www.youtube.com"
|
|
2243
2704
|
],
|
|
2244
2705
|
outboundBytes: 0,
|
|
2245
|
-
inboundBytes:
|
|
2706
|
+
inboundBytes: 14262,
|
|
2246
2707
|
injectedElements: [
|
|
2247
2708
|
{
|
|
2248
2709
|
tag: "script",
|
|
2249
|
-
src: "https://www.youtube.com/s/player/
|
|
2710
|
+
src: "https://www.youtube.com/s/player/f4f314f0/www-widgetapi.vflset/www-widgetapi.js"
|
|
2250
2711
|
}
|
|
2251
2712
|
]
|
|
2252
2713
|
},
|
|
2253
2714
|
performance: {
|
|
2254
2715
|
taskDurationMs: 8,
|
|
2255
|
-
scriptDurationMs:
|
|
2256
|
-
heapDeltaKb:
|
|
2716
|
+
scriptDurationMs: 1,
|
|
2717
|
+
heapDeltaKb: 800
|
|
2257
2718
|
},
|
|
2258
2719
|
scripts: [
|
|
2259
2720
|
{
|
|
2260
2721
|
url: "https://www.youtube.com/iframe_api",
|
|
2261
|
-
transferKb: 3,
|
|
2722
|
+
transferKb: 3.4,
|
|
2262
2723
|
decodedKb: 1,
|
|
2263
2724
|
encoding: "br",
|
|
2264
|
-
durationMs:
|
|
2725
|
+
durationMs: 341,
|
|
2265
2726
|
initiatorType: "script",
|
|
2266
2727
|
protocol: "unknown"
|
|
2267
2728
|
},
|
|
2268
2729
|
{
|
|
2269
|
-
url: "https://www.youtube.com/s/player/
|
|
2730
|
+
url: "https://www.youtube.com/s/player/f4f314f0/www-widgetapi.vflset/www-widgetapi.js",
|
|
2270
2731
|
transferKb: 10.6,
|
|
2271
2732
|
decodedKb: 31.4,
|
|
2272
2733
|
encoding: "br",
|
|
2273
|
-
durationMs:
|
|
2734
|
+
durationMs: 21,
|
|
2274
2735
|
initiatorType: "script",
|
|
2275
2736
|
protocol: "unknown"
|
|
2276
2737
|
}
|
|
@@ -2290,11 +2751,26 @@ const googleMaps = {
|
|
|
2290
2751
|
webgl: false,
|
|
2291
2752
|
audioContext: false,
|
|
2292
2753
|
userAgent: false,
|
|
2754
|
+
doNotTrack: false,
|
|
2293
2755
|
hardwareConcurrency: false,
|
|
2294
2756
|
deviceMemory: false,
|
|
2295
2757
|
plugins: false,
|
|
2296
2758
|
languages: false,
|
|
2297
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,
|
|
2298
2774
|
sendBeacon: false,
|
|
2299
2775
|
fetch: false,
|
|
2300
2776
|
xhr: false,
|
|
@@ -2336,11 +2812,26 @@ const npm = {
|
|
|
2336
2812
|
webgl: false,
|
|
2337
2813
|
audioContext: false,
|
|
2338
2814
|
userAgent: false,
|
|
2815
|
+
doNotTrack: false,
|
|
2339
2816
|
hardwareConcurrency: false,
|
|
2340
2817
|
deviceMemory: false,
|
|
2341
2818
|
plugins: false,
|
|
2342
2819
|
languages: false,
|
|
2343
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,
|
|
2344
2835
|
sendBeacon: false,
|
|
2345
2836
|
fetch: false,
|
|
2346
2837
|
xhr: false,
|
|
@@ -2371,7 +2862,7 @@ const npm = {
|
|
|
2371
2862
|
const googleRecaptcha = {
|
|
2372
2863
|
totalTransferKb: 363.9,
|
|
2373
2864
|
totalDecodedKb: 852,
|
|
2374
|
-
loadTimeMs:
|
|
2865
|
+
loadTimeMs: 244,
|
|
2375
2866
|
collectsWebVitals: false,
|
|
2376
2867
|
apis: {
|
|
2377
2868
|
cookies: true,
|
|
@@ -2382,11 +2873,26 @@ const googleRecaptcha = {
|
|
|
2382
2873
|
webgl: false,
|
|
2383
2874
|
audioContext: false,
|
|
2384
2875
|
userAgent: true,
|
|
2876
|
+
doNotTrack: false,
|
|
2385
2877
|
hardwareConcurrency: false,
|
|
2386
2878
|
deviceMemory: true,
|
|
2387
2879
|
plugins: false,
|
|
2388
2880
|
languages: false,
|
|
2389
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,
|
|
2390
2896
|
sendBeacon: true,
|
|
2391
2897
|
fetch: true,
|
|
2392
2898
|
xhr: true,
|
|
@@ -2404,7 +2910,7 @@ const googleRecaptcha = {
|
|
|
2404
2910
|
"www.gstatic.com"
|
|
2405
2911
|
],
|
|
2406
2912
|
outboundBytes: 0,
|
|
2407
|
-
inboundBytes:
|
|
2913
|
+
inboundBytes: 373010,
|
|
2408
2914
|
injectedElements: [
|
|
2409
2915
|
{
|
|
2410
2916
|
tag: "script",
|
|
@@ -2413,9 +2919,9 @@ const googleRecaptcha = {
|
|
|
2413
2919
|
]
|
|
2414
2920
|
},
|
|
2415
2921
|
performance: {
|
|
2416
|
-
taskDurationMs:
|
|
2417
|
-
scriptDurationMs:
|
|
2418
|
-
heapDeltaKb:
|
|
2922
|
+
taskDurationMs: 74,
|
|
2923
|
+
scriptDurationMs: 41,
|
|
2924
|
+
heapDeltaKb: 2997
|
|
2419
2925
|
},
|
|
2420
2926
|
scripts: [
|
|
2421
2927
|
{
|
|
@@ -2423,7 +2929,7 @@ const googleRecaptcha = {
|
|
|
2423
2929
|
transferKb: 1.5,
|
|
2424
2930
|
decodedKb: 1.5,
|
|
2425
2931
|
encoding: "gzip",
|
|
2426
|
-
durationMs:
|
|
2932
|
+
durationMs: 244,
|
|
2427
2933
|
initiatorType: "script",
|
|
2428
2934
|
protocol: "unknown"
|
|
2429
2935
|
},
|
|
@@ -2432,7 +2938,7 @@ const googleRecaptcha = {
|
|
|
2432
2938
|
transferKb: 362.4,
|
|
2433
2939
|
decodedKb: 850.5,
|
|
2434
2940
|
encoding: "gzip",
|
|
2435
|
-
durationMs:
|
|
2941
|
+
durationMs: 226,
|
|
2436
2942
|
initiatorType: "script",
|
|
2437
2943
|
protocol: "h2"
|
|
2438
2944
|
}
|
|
@@ -2440,8 +2946,8 @@ const googleRecaptcha = {
|
|
|
2440
2946
|
};
|
|
2441
2947
|
const googleSignIn = {
|
|
2442
2948
|
totalTransferKb: 92.1,
|
|
2443
|
-
totalDecodedKb: 247.
|
|
2444
|
-
loadTimeMs:
|
|
2949
|
+
totalDecodedKb: 247.6,
|
|
2950
|
+
loadTimeMs: 572,
|
|
2445
2951
|
collectsWebVitals: false,
|
|
2446
2952
|
apis: {
|
|
2447
2953
|
cookies: true,
|
|
@@ -2452,11 +2958,26 @@ const googleSignIn = {
|
|
|
2452
2958
|
webgl: false,
|
|
2453
2959
|
audioContext: false,
|
|
2454
2960
|
userAgent: true,
|
|
2961
|
+
doNotTrack: false,
|
|
2455
2962
|
hardwareConcurrency: false,
|
|
2456
2963
|
deviceMemory: false,
|
|
2457
2964
|
plugins: false,
|
|
2458
2965
|
languages: false,
|
|
2459
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,
|
|
2460
2981
|
sendBeacon: false,
|
|
2461
2982
|
fetch: false,
|
|
2462
2983
|
xhr: true,
|
|
@@ -2473,22 +2994,22 @@ const googleSignIn = {
|
|
|
2473
2994
|
"accounts.google.com"
|
|
2474
2995
|
],
|
|
2475
2996
|
outboundBytes: 0,
|
|
2476
|
-
inboundBytes:
|
|
2997
|
+
inboundBytes: 94340,
|
|
2477
2998
|
injectedElements: [
|
|
2478
2999
|
]
|
|
2479
3000
|
},
|
|
2480
3001
|
performance: {
|
|
2481
|
-
taskDurationMs:
|
|
2482
|
-
scriptDurationMs:
|
|
2483
|
-
heapDeltaKb:
|
|
3002
|
+
taskDurationMs: 15,
|
|
3003
|
+
scriptDurationMs: 5,
|
|
3004
|
+
heapDeltaKb: 1198
|
|
2484
3005
|
},
|
|
2485
3006
|
scripts: [
|
|
2486
3007
|
{
|
|
2487
3008
|
url: "https://accounts.google.com/gsi/client",
|
|
2488
3009
|
transferKb: 92.1,
|
|
2489
|
-
decodedKb: 247.
|
|
3010
|
+
decodedKb: 247.6,
|
|
2490
3011
|
encoding: "gzip",
|
|
2491
|
-
durationMs:
|
|
3012
|
+
durationMs: 572,
|
|
2492
3013
|
initiatorType: "script",
|
|
2493
3014
|
protocol: "unknown"
|
|
2494
3015
|
}
|
|
@@ -2508,11 +3029,26 @@ const blueskyEmbed = {
|
|
|
2508
3029
|
webgl: false,
|
|
2509
3030
|
audioContext: false,
|
|
2510
3031
|
userAgent: false,
|
|
3032
|
+
doNotTrack: false,
|
|
2511
3033
|
hardwareConcurrency: false,
|
|
2512
3034
|
deviceMemory: false,
|
|
2513
3035
|
plugins: false,
|
|
2514
3036
|
languages: false,
|
|
2515
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,
|
|
2516
3052
|
sendBeacon: false,
|
|
2517
3053
|
fetch: false,
|
|
2518
3054
|
xhr: false,
|
|
@@ -2543,7 +3079,7 @@ const blueskyEmbed = {
|
|
|
2543
3079
|
const instagramEmbed = {
|
|
2544
3080
|
totalTransferKb: 33.9,
|
|
2545
3081
|
totalDecodedKb: 102.2,
|
|
2546
|
-
loadTimeMs:
|
|
3082
|
+
loadTimeMs: 327,
|
|
2547
3083
|
collectsWebVitals: false,
|
|
2548
3084
|
apis: {
|
|
2549
3085
|
cookies: false,
|
|
@@ -2554,11 +3090,26 @@ const instagramEmbed = {
|
|
|
2554
3090
|
webgl: false,
|
|
2555
3091
|
audioContext: false,
|
|
2556
3092
|
userAgent: true,
|
|
3093
|
+
doNotTrack: false,
|
|
2557
3094
|
hardwareConcurrency: false,
|
|
2558
3095
|
deviceMemory: false,
|
|
2559
3096
|
plugins: false,
|
|
2560
3097
|
languages: false,
|
|
2561
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,
|
|
2562
3113
|
sendBeacon: false,
|
|
2563
3114
|
fetch: false,
|
|
2564
3115
|
xhr: false,
|
|
@@ -2575,14 +3126,14 @@ const instagramEmbed = {
|
|
|
2575
3126
|
"www.instagram.com"
|
|
2576
3127
|
],
|
|
2577
3128
|
outboundBytes: 0,
|
|
2578
|
-
inboundBytes:
|
|
3129
|
+
inboundBytes: 36790,
|
|
2579
3130
|
injectedElements: [
|
|
2580
3131
|
]
|
|
2581
3132
|
},
|
|
2582
3133
|
performance: {
|
|
2583
|
-
taskDurationMs:
|
|
2584
|
-
scriptDurationMs:
|
|
2585
|
-
heapDeltaKb:
|
|
3134
|
+
taskDurationMs: 16,
|
|
3135
|
+
scriptDurationMs: 9,
|
|
3136
|
+
heapDeltaKb: 875
|
|
2586
3137
|
},
|
|
2587
3138
|
scripts: [
|
|
2588
3139
|
{
|
|
@@ -2590,7 +3141,7 @@ const instagramEmbed = {
|
|
|
2590
3141
|
transferKb: 33.9,
|
|
2591
3142
|
decodedKb: 102.2,
|
|
2592
3143
|
encoding: "zstd",
|
|
2593
|
-
durationMs:
|
|
3144
|
+
durationMs: 327,
|
|
2594
3145
|
initiatorType: "script",
|
|
2595
3146
|
protocol: "h2"
|
|
2596
3147
|
}
|
|
@@ -2599,7 +3150,7 @@ const instagramEmbed = {
|
|
|
2599
3150
|
const xEmbed = {
|
|
2600
3151
|
totalTransferKb: 130.5,
|
|
2601
3152
|
totalDecodedKb: 410.4,
|
|
2602
|
-
loadTimeMs:
|
|
3153
|
+
loadTimeMs: 72,
|
|
2603
3154
|
collectsWebVitals: false,
|
|
2604
3155
|
apis: {
|
|
2605
3156
|
cookies: false,
|
|
@@ -2610,11 +3161,26 @@ const xEmbed = {
|
|
|
2610
3161
|
webgl: false,
|
|
2611
3162
|
audioContext: false,
|
|
2612
3163
|
userAgent: true,
|
|
3164
|
+
doNotTrack: false,
|
|
2613
3165
|
hardwareConcurrency: false,
|
|
2614
3166
|
deviceMemory: false,
|
|
2615
3167
|
plugins: false,
|
|
2616
3168
|
languages: false,
|
|
2617
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,
|
|
2618
3184
|
sendBeacon: false,
|
|
2619
3185
|
fetch: false,
|
|
2620
3186
|
xhr: true,
|
|
@@ -2636,14 +3202,14 @@ const xEmbed = {
|
|
|
2636
3202
|
injectedElements: [
|
|
2637
3203
|
{
|
|
2638
3204
|
tag: "iframe",
|
|
2639
|
-
src: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%
|
|
3205
|
+
src: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%3A34081"
|
|
2640
3206
|
}
|
|
2641
3207
|
]
|
|
2642
3208
|
},
|
|
2643
3209
|
performance: {
|
|
2644
|
-
taskDurationMs:
|
|
2645
|
-
scriptDurationMs:
|
|
2646
|
-
heapDeltaKb:
|
|
3210
|
+
taskDurationMs: 49,
|
|
3211
|
+
scriptDurationMs: 14,
|
|
3212
|
+
heapDeltaKb: 2457
|
|
2647
3213
|
},
|
|
2648
3214
|
scripts: [
|
|
2649
3215
|
{
|
|
@@ -2651,12 +3217,12 @@ const xEmbed = {
|
|
|
2651
3217
|
transferKb: 27.3,
|
|
2652
3218
|
decodedKb: 90.9,
|
|
2653
3219
|
encoding: "gzip",
|
|
2654
|
-
durationMs:
|
|
3220
|
+
durationMs: 72,
|
|
2655
3221
|
initiatorType: "script",
|
|
2656
3222
|
protocol: "unknown"
|
|
2657
3223
|
},
|
|
2658
3224
|
{
|
|
2659
|
-
url: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%
|
|
3225
|
+
url: "https://platform.twitter.com/widgets/widget_iframe.2f70fb173b9000da126c79afe2098f02.html?origin=http%3A%2F%2F127.0.0.1%3A34081",
|
|
2660
3226
|
transferKb: 103.2,
|
|
2661
3227
|
decodedKb: 319.5,
|
|
2662
3228
|
encoding: "gzip",
|
|
@@ -2680,11 +3246,26 @@ const gravatar = {
|
|
|
2680
3246
|
webgl: false,
|
|
2681
3247
|
audioContext: false,
|
|
2682
3248
|
userAgent: false,
|
|
3249
|
+
doNotTrack: false,
|
|
2683
3250
|
hardwareConcurrency: false,
|
|
2684
3251
|
deviceMemory: false,
|
|
2685
3252
|
plugins: false,
|
|
2686
3253
|
languages: false,
|
|
2687
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,
|
|
2688
3269
|
sendBeacon: false,
|
|
2689
3270
|
fetch: false,
|
|
2690
3271
|
xhr: false,
|
|
@@ -2754,22 +3335,26 @@ const scriptSizes = {
|
|
|
2754
3335
|
};
|
|
2755
3336
|
|
|
2756
3337
|
const PERSISTENCE_APIS = ["cookies", "localStorage", "sessionStorage", "indexedDB"];
|
|
2757
|
-
const FINGERPRINTING_APIS = ["canvas", "webgl", "audioContext", "deviceMemory", "hardwareConcurrency", "plugins", "screen", "userAgent", "languages"];
|
|
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"];
|
|
2758
3340
|
const MONITORING_APIS = ["mutationObserver", "intersectionObserver"];
|
|
2759
3341
|
const PERSISTENCE_WEIGHT = 10;
|
|
3342
|
+
const TRACKING_WEIGHT = 8;
|
|
2760
3343
|
const FINGERPRINTING_WEIGHT = 6;
|
|
2761
3344
|
const MONITORING_WEIGHT = 4;
|
|
2762
|
-
const MAX_SCORE = PERSISTENCE_APIS.length * PERSISTENCE_WEIGHT + FINGERPRINTING_APIS.length * FINGERPRINTING_WEIGHT + MONITORING_APIS.length * MONITORING_WEIGHT;
|
|
3345
|
+
const MAX_SCORE = PERSISTENCE_APIS.length * PERSISTENCE_WEIGHT + TRACKING_APIS.length * TRACKING_WEIGHT + FINGERPRINTING_APIS.length * FINGERPRINTING_WEIGHT + MONITORING_APIS.length * MONITORING_WEIGHT;
|
|
2763
3346
|
function computeApiPrivacyScore(apis) {
|
|
2764
3347
|
const count = (keys) => keys.filter((k) => apis[k]).length;
|
|
2765
3348
|
const persistence = count(PERSISTENCE_APIS);
|
|
2766
3349
|
const fingerprinting = count(FINGERPRINTING_APIS);
|
|
3350
|
+
const tracking = count(TRACKING_APIS);
|
|
2767
3351
|
const monitoring = count(MONITORING_APIS);
|
|
2768
|
-
const raw = persistence * PERSISTENCE_WEIGHT + fingerprinting * FINGERPRINTING_WEIGHT + monitoring * MONITORING_WEIGHT;
|
|
3352
|
+
const raw = persistence * PERSISTENCE_WEIGHT + tracking * TRACKING_WEIGHT + fingerprinting * FINGERPRINTING_WEIGHT + monitoring * MONITORING_WEIGHT;
|
|
2769
3353
|
return {
|
|
2770
3354
|
score: Math.round(raw / MAX_SCORE * 100),
|
|
2771
3355
|
persistence,
|
|
2772
3356
|
fingerprinting,
|
|
3357
|
+
tracking,
|
|
2773
3358
|
monitoring
|
|
2774
3359
|
};
|
|
2775
3360
|
}
|