@eddym06/custom-chrome-mcp 1.0.4 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/CONDITIONAL_DESCRIPTIONS.md +174 -0
  2. package/FUTURE_FEATURES.txt +1503 -0
  3. package/README.md +300 -3
  4. package/TEST_WORKFLOW.md +311 -0
  5. package/USAGE_GUIDE.md +393 -0
  6. package/demo_features.ts +115 -0
  7. package/dist/chrome-connector.d.ts +31 -4
  8. package/dist/chrome-connector.d.ts.map +1 -1
  9. package/dist/chrome-connector.js +402 -53
  10. package/dist/chrome-connector.js.map +1 -1
  11. package/dist/index.js +69 -12
  12. package/dist/index.js.map +1 -1
  13. package/dist/tests/execute-script-tests.d.ts +62 -0
  14. package/dist/tests/execute-script-tests.d.ts.map +1 -0
  15. package/dist/tests/execute-script-tests.js +280 -0
  16. package/dist/tests/execute-script-tests.js.map +1 -0
  17. package/dist/tests/run-execute-tests.d.ts +7 -0
  18. package/dist/tests/run-execute-tests.d.ts.map +1 -0
  19. package/dist/tests/run-execute-tests.js +88 -0
  20. package/dist/tests/run-execute-tests.js.map +1 -0
  21. package/dist/tools/advanced-network.backup.d.ts +245 -0
  22. package/dist/tools/advanced-network.backup.d.ts.map +1 -0
  23. package/dist/tools/advanced-network.backup.js +996 -0
  24. package/dist/tools/advanced-network.backup.js.map +1 -0
  25. package/dist/tools/advanced-network.d.ts +580 -0
  26. package/dist/tools/advanced-network.d.ts.map +1 -0
  27. package/dist/tools/advanced-network.js +1325 -0
  28. package/dist/tools/advanced-network.js.map +1 -0
  29. package/dist/tools/anti-detection.d.ts.map +1 -1
  30. package/dist/tools/anti-detection.js +13 -8
  31. package/dist/tools/anti-detection.js.map +1 -1
  32. package/dist/tools/capture.d.ts +15 -9
  33. package/dist/tools/capture.d.ts.map +1 -1
  34. package/dist/tools/capture.js +21 -12
  35. package/dist/tools/capture.js.map +1 -1
  36. package/dist/tools/interaction.d.ts +84 -10
  37. package/dist/tools/interaction.d.ts.map +1 -1
  38. package/dist/tools/interaction.js +88 -33
  39. package/dist/tools/interaction.js.map +1 -1
  40. package/dist/tools/navigation.d.ts.map +1 -1
  41. package/dist/tools/navigation.js +43 -21
  42. package/dist/tools/navigation.js.map +1 -1
  43. package/dist/tools/network-accessibility.d.ts +67 -0
  44. package/dist/tools/network-accessibility.d.ts.map +1 -0
  45. package/dist/tools/network-accessibility.js +367 -0
  46. package/dist/tools/network-accessibility.js.map +1 -0
  47. package/dist/tools/playwright-launcher.d.ts +1 -1
  48. package/dist/tools/playwright-launcher.js +6 -6
  49. package/dist/tools/playwright-launcher.js.map +1 -1
  50. package/dist/tools/service-worker.d.ts +2 -2
  51. package/dist/tools/service-worker.d.ts.map +1 -1
  52. package/dist/tools/service-worker.js +22 -12
  53. package/dist/tools/service-worker.js.map +1 -1
  54. package/dist/tools/session.d.ts.map +1 -1
  55. package/dist/tools/session.js +23 -14
  56. package/dist/tools/session.js.map +1 -1
  57. package/dist/tools/system.d.ts +2 -2
  58. package/dist/tools/system.d.ts.map +1 -1
  59. package/dist/tools/system.js +9 -5
  60. package/dist/tools/system.js.map +1 -1
  61. package/dist/utils/truncate.d.ts +29 -0
  62. package/dist/utils/truncate.d.ts.map +1 -0
  63. package/dist/utils/truncate.js +46 -0
  64. package/dist/utils/truncate.js.map +1 -0
  65. package/dist/verify-tools.d.ts +7 -0
  66. package/dist/verify-tools.d.ts.map +1 -0
  67. package/dist/verify-tools.js +137 -0
  68. package/dist/verify-tools.js.map +1 -0
  69. package/package.json +3 -3
  70. package/recordings/demo_recording.har +3036 -0
  71. package/.npmrc.example +0 -2
  72. package/test-playwright.js +0 -57
@@ -0,0 +1,3036 @@
1
+ {
2
+ "log": {
3
+ "version": "1.2",
4
+ "creator": {
5
+ "name": "Custom Chrome MCP",
6
+ "version": "1.0.10"
7
+ },
8
+ "pages": [],
9
+ "entries": [
10
+ {
11
+ "requestId": "AA5BE621CF7F14F1826BEA66C546B545",
12
+ "startedDateTime": "1970-01-06T00:02:14.151Z",
13
+ "time": 83.88400000333786,
14
+ "request": {
15
+ "method": "GET",
16
+ "url": "https://example.com/",
17
+ "httpVersion": "HTTP/1.1",
18
+ "headers": [
19
+ {
20
+ "name": "Upgrade-Insecure-Requests",
21
+ "value": "1"
22
+ },
23
+ {
24
+ "name": "User-Agent",
25
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
26
+ },
27
+ {
28
+ "name": "sec-ch-ua",
29
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
30
+ },
31
+ {
32
+ "name": "sec-ch-ua-mobile",
33
+ "value": "?0"
34
+ },
35
+ {
36
+ "name": "sec-ch-ua-platform",
37
+ "value": "\"Windows\""
38
+ }
39
+ ],
40
+ "queryString": [],
41
+ "cookies": [],
42
+ "headersSize": -1,
43
+ "bodySize": 0
44
+ },
45
+ "response": {
46
+ "status": 200,
47
+ "statusText": "",
48
+ "httpVersion": "h2",
49
+ "headers": [
50
+ {
51
+ "name": "age",
52
+ "value": "7113"
53
+ },
54
+ {
55
+ "name": "allow",
56
+ "value": "GET, HEAD"
57
+ },
58
+ {
59
+ "name": "cf-cache-status",
60
+ "value": "HIT"
61
+ },
62
+ {
63
+ "name": "cf-ray",
64
+ "value": "9bb0e6dc48cb9115-SDQ"
65
+ },
66
+ {
67
+ "name": "content-encoding",
68
+ "value": "gzip"
69
+ },
70
+ {
71
+ "name": "content-type",
72
+ "value": "text/html"
73
+ },
74
+ {
75
+ "name": "date",
76
+ "value": "Fri, 09 Jan 2026 03:38:26 GMT"
77
+ },
78
+ {
79
+ "name": "last-modified",
80
+ "value": "Sat, 03 Jan 2026 05:43:21 GMT"
81
+ },
82
+ {
83
+ "name": "server",
84
+ "value": "cloudflare"
85
+ },
86
+ {
87
+ "name": "vary",
88
+ "value": "Accept-Encoding"
89
+ }
90
+ ],
91
+ "cookies": [],
92
+ "content": {
93
+ "size": 0,
94
+ "mimeType": "text/html"
95
+ },
96
+ "redirectURL": "",
97
+ "headersSize": -1,
98
+ "bodySize": -1
99
+ },
100
+ "cache": {},
101
+ "timings": {
102
+ "blocked": -1,
103
+ "dns": -1,
104
+ "connect": -1,
105
+ "send": 0,
106
+ "wait": 0,
107
+ "receive": 0,
108
+ "ssl": -1
109
+ }
110
+ },
111
+ {
112
+ "requestId": "42504.72",
113
+ "startedDateTime": "1970-01-06T00:02:14.681Z",
114
+ "time": 6.305999994277954,
115
+ "request": {
116
+ "method": "GET",
117
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/nj.css",
118
+ "httpVersion": "HTTP/1.1",
119
+ "headers": [
120
+ {
121
+ "name": "User-Agent",
122
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
123
+ },
124
+ {
125
+ "name": "Referer",
126
+ "value": ""
127
+ }
128
+ ],
129
+ "queryString": [],
130
+ "cookies": [],
131
+ "headersSize": -1,
132
+ "bodySize": 0
133
+ },
134
+ "response": {
135
+ "status": 200,
136
+ "statusText": "OK",
137
+ "httpVersion": "chrome-extension",
138
+ "headers": [
139
+ {
140
+ "name": "Content-Security-Policy",
141
+ "value": "script-src 'self'; object-src 'self'"
142
+ },
143
+ {
144
+ "name": "Access-Control-Allow-Origin",
145
+ "value": "*"
146
+ },
147
+ {
148
+ "name": "cache-control",
149
+ "value": "no-cache"
150
+ },
151
+ {
152
+ "name": "ETag",
153
+ "value": "\"dhpOCrhz+0wQtOxAFimfwhGbhuI=\""
154
+ },
155
+ {
156
+ "name": "Content-Type",
157
+ "value": "text/css"
158
+ },
159
+ {
160
+ "name": "Last-Modified",
161
+ "value": "Fri, 26 Dec 2025 10:18:12 GMT"
162
+ },
163
+ {
164
+ "name": "Cross-Origin-Resource-Policy",
165
+ "value": "cross-origin"
166
+ }
167
+ ],
168
+ "cookies": [],
169
+ "content": {
170
+ "size": 0,
171
+ "mimeType": "text/css"
172
+ },
173
+ "redirectURL": "",
174
+ "headersSize": -1,
175
+ "bodySize": -1
176
+ },
177
+ "cache": {},
178
+ "timings": {
179
+ "blocked": -1,
180
+ "dns": -1,
181
+ "connect": -1,
182
+ "send": 0,
183
+ "wait": 0,
184
+ "receive": 0,
185
+ "ssl": -1
186
+ }
187
+ },
188
+ {
189
+ "requestId": "42504.73",
190
+ "startedDateTime": "1970-01-06T00:02:15.451Z",
191
+ "time": 5.022000014781952,
192
+ "request": {
193
+ "method": "GET",
194
+ "url": "chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/content-all.css",
195
+ "httpVersion": "HTTP/1.1",
196
+ "headers": [
197
+ {
198
+ "name": "User-Agent",
199
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
200
+ },
201
+ {
202
+ "name": "Referer",
203
+ "value": ""
204
+ }
205
+ ],
206
+ "queryString": [],
207
+ "cookies": [],
208
+ "headersSize": -1,
209
+ "bodySize": 0
210
+ },
211
+ "response": {
212
+ "status": 200,
213
+ "statusText": "OK",
214
+ "httpVersion": "chrome-extension",
215
+ "headers": [
216
+ {
217
+ "name": "Content-Security-Policy",
218
+ "value": "script-src 'self' http://localhost:8097/ 'wasm-unsafe-eval'; object-src 'self'"
219
+ },
220
+ {
221
+ "name": "Access-Control-Allow-Origin",
222
+ "value": "*"
223
+ },
224
+ {
225
+ "name": "cache-control",
226
+ "value": "no-cache"
227
+ },
228
+ {
229
+ "name": "ETag",
230
+ "value": "\"6EFukkcw9POrg3HEASMFCUprtRI=\""
231
+ },
232
+ {
233
+ "name": "Content-Type",
234
+ "value": "text/css"
235
+ },
236
+ {
237
+ "name": "Last-Modified",
238
+ "value": "Wed, 24 Dec 2025 10:45:24 GMT"
239
+ },
240
+ {
241
+ "name": "Cross-Origin-Resource-Policy",
242
+ "value": "cross-origin"
243
+ }
244
+ ],
245
+ "cookies": [],
246
+ "content": {
247
+ "size": 0,
248
+ "mimeType": "text/css"
249
+ },
250
+ "redirectURL": "",
251
+ "headersSize": -1,
252
+ "bodySize": -1
253
+ },
254
+ "cache": {},
255
+ "timings": {
256
+ "blocked": -1,
257
+ "dns": -1,
258
+ "connect": -1,
259
+ "send": 0,
260
+ "wait": 0,
261
+ "receive": 0,
262
+ "ssl": -1
263
+ }
264
+ },
265
+ {
266
+ "requestId": "42504.74",
267
+ "startedDateTime": "1970-01-06T00:02:15.452Z",
268
+ "time": 2.990000009536743,
269
+ "request": {
270
+ "method": "GET",
271
+ "url": "chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/fonts/fonts.css",
272
+ "httpVersion": "HTTP/1.1",
273
+ "headers": [
274
+ {
275
+ "name": "User-Agent",
276
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
277
+ },
278
+ {
279
+ "name": "Referer",
280
+ "value": ""
281
+ }
282
+ ],
283
+ "queryString": [],
284
+ "cookies": [],
285
+ "headersSize": -1,
286
+ "bodySize": 0
287
+ },
288
+ "response": {
289
+ "status": 200,
290
+ "statusText": "OK",
291
+ "httpVersion": "chrome-extension",
292
+ "headers": [
293
+ {
294
+ "name": "Content-Security-Policy",
295
+ "value": "script-src 'self' http://localhost:8097/ 'wasm-unsafe-eval'; object-src 'self'"
296
+ },
297
+ {
298
+ "name": "Access-Control-Allow-Origin",
299
+ "value": "*"
300
+ },
301
+ {
302
+ "name": "cache-control",
303
+ "value": "no-cache"
304
+ },
305
+ {
306
+ "name": "ETag",
307
+ "value": "\"MCfTa0IgEo1tcaOdc3oO1fSKPcs=\""
308
+ },
309
+ {
310
+ "name": "Content-Type",
311
+ "value": "text/css"
312
+ },
313
+ {
314
+ "name": "Last-Modified",
315
+ "value": "Wed, 24 Dec 2025 10:45:20 GMT"
316
+ },
317
+ {
318
+ "name": "Cross-Origin-Resource-Policy",
319
+ "value": "cross-origin"
320
+ }
321
+ ],
322
+ "cookies": [],
323
+ "content": {
324
+ "size": 0,
325
+ "mimeType": "text/css"
326
+ },
327
+ "redirectURL": "",
328
+ "headersSize": -1,
329
+ "bodySize": -1
330
+ },
331
+ "cache": {},
332
+ "timings": {
333
+ "blocked": -1,
334
+ "dns": -1,
335
+ "connect": -1,
336
+ "send": 0,
337
+ "wait": 0,
338
+ "receive": 0,
339
+ "ssl": -1
340
+ }
341
+ },
342
+ {
343
+ "requestId": "42504.75",
344
+ "startedDateTime": "1970-01-06T00:02:15.469Z",
345
+ "time": 8.728000044822693,
346
+ "request": {
347
+ "method": "GET",
348
+ "url": "https://www.gstatic.com/_/translate_http/_/ss/k=translate_http.tr.2f3WBw8L4SI.L.W.O/am=AAQD/d=0/rs=AN8SPfrXXtxuFpMMBoYgp93jo68L3iC3ZQ/m=el_main_css",
349
+ "httpVersion": "HTTP/1.1",
350
+ "headers": [
351
+ {
352
+ "name": "sec-ch-ua-platform",
353
+ "value": "\"Windows\""
354
+ },
355
+ {
356
+ "name": "Referer",
357
+ "value": "https://example.com/"
358
+ },
359
+ {
360
+ "name": "User-Agent",
361
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
362
+ },
363
+ {
364
+ "name": "sec-ch-ua",
365
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
366
+ },
367
+ {
368
+ "name": "sec-ch-ua-mobile",
369
+ "value": "?0"
370
+ }
371
+ ],
372
+ "queryString": [],
373
+ "cookies": [],
374
+ "headersSize": -1,
375
+ "bodySize": 0
376
+ },
377
+ "response": {
378
+ "status": 200,
379
+ "statusText": "",
380
+ "httpVersion": "h2",
381
+ "headers": [
382
+ {
383
+ "name": "content-encoding",
384
+ "value": "gzip"
385
+ },
386
+ {
387
+ "name": "age",
388
+ "value": "27963"
389
+ },
390
+ {
391
+ "name": "report-to",
392
+ "value": "{\"group\":\"rosetta\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/rosetta\"}]}"
393
+ },
394
+ {
395
+ "name": "x-content-type-options",
396
+ "value": "nosniff"
397
+ },
398
+ {
399
+ "name": "expires",
400
+ "value": "Fri, 08 Jan 2027 11:28:07 GMT"
401
+ },
402
+ {
403
+ "name": "alt-svc",
404
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
405
+ },
406
+ {
407
+ "name": "date",
408
+ "value": "Thu, 08 Jan 2026 11:28:07 GMT"
409
+ },
410
+ {
411
+ "name": "last-modified",
412
+ "value": "Wed, 15 Oct 2025 01:09:54 GMT"
413
+ },
414
+ {
415
+ "name": "content-type",
416
+ "value": "text/css; charset=UTF-8"
417
+ },
418
+ {
419
+ "name": "vary",
420
+ "value": "Accept-Encoding"
421
+ },
422
+ {
423
+ "name": "cache-control",
424
+ "value": "public, max-age=31536000"
425
+ },
426
+ {
427
+ "name": "cross-origin-opener-policy",
428
+ "value": "same-origin; report-to=\"rosetta\""
429
+ },
430
+ {
431
+ "name": "cross-origin-resource-policy",
432
+ "value": "cross-origin"
433
+ },
434
+ {
435
+ "name": "content-security-policy-report-only",
436
+ "value": "require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/rosetta"
437
+ },
438
+ {
439
+ "name": "accept-ranges",
440
+ "value": "bytes"
441
+ },
442
+ {
443
+ "name": "access-control-allow-origin",
444
+ "value": "*"
445
+ },
446
+ {
447
+ "name": "content-length",
448
+ "value": "4155"
449
+ },
450
+ {
451
+ "name": "x-xss-protection",
452
+ "value": "0"
453
+ },
454
+ {
455
+ "name": "server",
456
+ "value": "sffe"
457
+ }
458
+ ],
459
+ "cookies": [],
460
+ "content": {
461
+ "size": 0,
462
+ "mimeType": "text/css"
463
+ },
464
+ "redirectURL": "",
465
+ "headersSize": -1,
466
+ "bodySize": -1
467
+ },
468
+ "cache": {},
469
+ "timings": {
470
+ "blocked": -1,
471
+ "dns": -1,
472
+ "connect": -1,
473
+ "send": 0,
474
+ "wait": 0,
475
+ "receive": 0,
476
+ "ssl": -1
477
+ }
478
+ },
479
+ {
480
+ "requestId": "42504.76",
481
+ "startedDateTime": "1970-01-06T00:02:15.473Z",
482
+ "time": 191.50900000333786,
483
+ "request": {
484
+ "method": "GET",
485
+ "url": "https://translate.googleapis.com/_/translate_http/_/js/k=translate_http.tr.es.3W2YONvEeHU.O/am=AAAQ/d=1/exm=el_conf/ed=1/rs=AN8SPfq_Ie30d8CMugfCFVGTn5vIlbz9Rg/m=el_main",
486
+ "httpVersion": "HTTP/1.1",
487
+ "headers": [
488
+ {
489
+ "name": "sec-ch-ua-platform",
490
+ "value": "\"Windows\""
491
+ },
492
+ {
493
+ "name": "Referer",
494
+ "value": "https://example.com/"
495
+ },
496
+ {
497
+ "name": "User-Agent",
498
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
499
+ },
500
+ {
501
+ "name": "sec-ch-ua",
502
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
503
+ },
504
+ {
505
+ "name": "sec-ch-ua-mobile",
506
+ "value": "?0"
507
+ }
508
+ ],
509
+ "queryString": [],
510
+ "cookies": [],
511
+ "headersSize": -1,
512
+ "bodySize": 0
513
+ },
514
+ "response": {
515
+ "status": 200,
516
+ "statusText": "",
517
+ "httpVersion": "h2",
518
+ "headers": [
519
+ {
520
+ "name": "content-encoding",
521
+ "value": "gzip"
522
+ },
523
+ {
524
+ "name": "age",
525
+ "value": "44731"
526
+ },
527
+ {
528
+ "name": "report-to",
529
+ "value": "{\"group\":\"rosetta\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/rosetta\"}]}"
530
+ },
531
+ {
532
+ "name": "x-content-type-options",
533
+ "value": "nosniff"
534
+ },
535
+ {
536
+ "name": "expires",
537
+ "value": "Fri, 08 Jan 2027 15:12:56 GMT"
538
+ },
539
+ {
540
+ "name": "alt-svc",
541
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
542
+ },
543
+ {
544
+ "name": "date",
545
+ "value": "Thu, 08 Jan 2026 15:12:56 GMT"
546
+ },
547
+ {
548
+ "name": "last-modified",
549
+ "value": "Sat, 13 Dec 2025 04:11:49 GMT"
550
+ },
551
+ {
552
+ "name": "content-type",
553
+ "value": "text/javascript; charset=UTF-8"
554
+ },
555
+ {
556
+ "name": "vary",
557
+ "value": "Accept-Encoding"
558
+ },
559
+ {
560
+ "name": "cache-control",
561
+ "value": "public, max-age=31536000"
562
+ },
563
+ {
564
+ "name": "cross-origin-opener-policy",
565
+ "value": "same-origin; report-to=\"rosetta\""
566
+ },
567
+ {
568
+ "name": "cross-origin-resource-policy",
569
+ "value": "cross-origin"
570
+ },
571
+ {
572
+ "name": "content-security-policy-report-only",
573
+ "value": "require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/rosetta"
574
+ },
575
+ {
576
+ "name": "accept-ranges",
577
+ "value": "bytes"
578
+ },
579
+ {
580
+ "name": "access-control-allow-origin",
581
+ "value": "*"
582
+ },
583
+ {
584
+ "name": "content-length",
585
+ "value": "105328"
586
+ },
587
+ {
588
+ "name": "x-xss-protection",
589
+ "value": "0"
590
+ },
591
+ {
592
+ "name": "server",
593
+ "value": "sffe"
594
+ }
595
+ ],
596
+ "cookies": [],
597
+ "content": {
598
+ "size": 0,
599
+ "mimeType": "text/javascript"
600
+ },
601
+ "redirectURL": "",
602
+ "headersSize": -1,
603
+ "bodySize": -1
604
+ },
605
+ "cache": {},
606
+ "timings": {
607
+ "blocked": -1,
608
+ "dns": -1,
609
+ "connect": -1,
610
+ "send": 0,
611
+ "wait": 0,
612
+ "receive": 0,
613
+ "ssl": -1
614
+ }
615
+ },
616
+ {
617
+ "requestId": "D3A72F624FDC442904F7C3F2C853E6BB",
618
+ "startedDateTime": "1970-01-06T00:02:15.621Z",
619
+ "time": 0,
620
+ "request": {
621
+ "method": "GET",
622
+ "url": "chrome-extension://jckigdhmponckmebbhbfenjmofkklnif/index.html",
623
+ "httpVersion": "HTTP/1.1",
624
+ "headers": [
625
+ {
626
+ "name": "Upgrade-Insecure-Requests",
627
+ "value": "1"
628
+ },
629
+ {
630
+ "name": "sec-ch-ua",
631
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
632
+ },
633
+ {
634
+ "name": "sec-ch-ua-mobile",
635
+ "value": "?0"
636
+ },
637
+ {
638
+ "name": "sec-ch-ua-platform",
639
+ "value": "\"Windows\""
640
+ }
641
+ ],
642
+ "queryString": [],
643
+ "cookies": [],
644
+ "headersSize": -1,
645
+ "bodySize": 0
646
+ },
647
+ "response": {
648
+ "status": 200,
649
+ "statusText": "OK",
650
+ "httpVersion": "chrome-extension",
651
+ "headers": [
652
+ {
653
+ "name": "Access-Control-Allow-Origin",
654
+ "value": "*"
655
+ },
656
+ {
657
+ "name": "Content-Security-Policy",
658
+ "value": "script-src 'self';"
659
+ },
660
+ {
661
+ "name": "Content-Type",
662
+ "value": "text/html"
663
+ },
664
+ {
665
+ "name": "Cross-Origin-Resource-Policy",
666
+ "value": "cross-origin"
667
+ },
668
+ {
669
+ "name": "ETag",
670
+ "value": "\"O0qEMh7+oA1ckgB5O2uwzyYyhiA=\""
671
+ },
672
+ {
673
+ "name": "Last-Modified",
674
+ "value": "Tue, 01 Jan 1980 00:00:00 GMT"
675
+ },
676
+ {
677
+ "name": "cache-control",
678
+ "value": "no-cache"
679
+ }
680
+ ],
681
+ "cookies": [],
682
+ "content": {
683
+ "size": 0,
684
+ "mimeType": "text/html"
685
+ },
686
+ "redirectURL": "",
687
+ "headersSize": -1,
688
+ "bodySize": -1
689
+ },
690
+ "cache": {},
691
+ "timings": {
692
+ "blocked": -1,
693
+ "dns": -1,
694
+ "connect": -1,
695
+ "send": 0,
696
+ "wait": 0,
697
+ "receive": 0,
698
+ "ssl": -1
699
+ }
700
+ },
701
+ {
702
+ "requestId": "42504.77",
703
+ "startedDateTime": "1970-01-06T00:02:15.616Z",
704
+ "time": 34.505999982357025,
705
+ "request": {
706
+ "method": "GET",
707
+ "url": "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap",
708
+ "httpVersion": "HTTP/1.1",
709
+ "headers": [
710
+ {
711
+ "name": "sec-ch-ua-platform",
712
+ "value": "\"Windows\""
713
+ },
714
+ {
715
+ "name": "Referer",
716
+ "value": "https://example.com/"
717
+ },
718
+ {
719
+ "name": "User-Agent",
720
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
721
+ },
722
+ {
723
+ "name": "sec-ch-ua",
724
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
725
+ },
726
+ {
727
+ "name": "sec-ch-ua-mobile",
728
+ "value": "?0"
729
+ }
730
+ ],
731
+ "queryString": [],
732
+ "cookies": [],
733
+ "headersSize": -1,
734
+ "bodySize": 0
735
+ },
736
+ "response": {
737
+ "status": 200,
738
+ "statusText": "",
739
+ "httpVersion": "h2",
740
+ "headers": [
741
+ {
742
+ "name": "content-encoding",
743
+ "value": "gzip"
744
+ },
745
+ {
746
+ "name": "x-content-type-options",
747
+ "value": "nosniff"
748
+ },
749
+ {
750
+ "name": "expires",
751
+ "value": "Thu, 08 Jan 2026 19:13:45 GMT"
752
+ },
753
+ {
754
+ "name": "alt-svc",
755
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
756
+ },
757
+ {
758
+ "name": "date",
759
+ "value": "Thu, 08 Jan 2026 19:13:45 GMT"
760
+ },
761
+ {
762
+ "name": "content-type",
763
+ "value": "text/css; charset=utf-8"
764
+ },
765
+ {
766
+ "name": "vary",
767
+ "value": "Sec-Fetch-Dest, Sec-Fetch-Mode, Sec-Fetch-Site"
768
+ },
769
+ {
770
+ "name": "last-modified",
771
+ "value": "Thu, 08 Jan 2026 18:57:03 GMT"
772
+ },
773
+ {
774
+ "name": "x-frame-options",
775
+ "value": "SAMEORIGIN"
776
+ },
777
+ {
778
+ "name": "link",
779
+ "value": "<https://fonts.gstatic.com>; rel=preconnect; crossorigin"
780
+ },
781
+ {
782
+ "name": "cache-control",
783
+ "value": "private, max-age=86400, stale-while-revalidate=604800"
784
+ },
785
+ {
786
+ "name": "timing-allow-origin",
787
+ "value": "*"
788
+ },
789
+ {
790
+ "name": "cross-origin-opener-policy",
791
+ "value": "same-origin-allow-popups"
792
+ },
793
+ {
794
+ "name": "cross-origin-resource-policy",
795
+ "value": "cross-origin"
796
+ },
797
+ {
798
+ "name": "access-control-allow-origin",
799
+ "value": "*"
800
+ },
801
+ {
802
+ "name": "x-xss-protection",
803
+ "value": "0"
804
+ },
805
+ {
806
+ "name": "server",
807
+ "value": "ESF"
808
+ }
809
+ ],
810
+ "cookies": [],
811
+ "content": {
812
+ "size": 0,
813
+ "mimeType": "text/css"
814
+ },
815
+ "redirectURL": "",
816
+ "headersSize": -1,
817
+ "bodySize": -1
818
+ },
819
+ "cache": {},
820
+ "timings": {
821
+ "blocked": -1,
822
+ "dns": -1,
823
+ "connect": -1,
824
+ "send": 0,
825
+ "wait": 0,
826
+ "receive": 0,
827
+ "ssl": -1
828
+ }
829
+ },
830
+ {
831
+ "requestId": "42504.78",
832
+ "startedDateTime": "1970-01-06T00:02:15.849Z",
833
+ "time": 0,
834
+ "request": {
835
+ "method": "GET",
836
+ "url": "https://translate.google.com/gen204?nca=te_li&client=te_lib&logld=vTE_20251215",
837
+ "httpVersion": "HTTP/1.1",
838
+ "headers": [
839
+ {
840
+ "name": "sec-ch-ua-platform",
841
+ "value": "\"Windows\""
842
+ },
843
+ {
844
+ "name": "Referer",
845
+ "value": "https://example.com/"
846
+ },
847
+ {
848
+ "name": "User-Agent",
849
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
850
+ },
851
+ {
852
+ "name": "sec-ch-ua",
853
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
854
+ },
855
+ {
856
+ "name": "sec-ch-ua-mobile",
857
+ "value": "?0"
858
+ }
859
+ ],
860
+ "queryString": [],
861
+ "cookies": [],
862
+ "headersSize": -1,
863
+ "bodySize": 0
864
+ },
865
+ "response": {},
866
+ "cache": {},
867
+ "timings": {
868
+ "blocked": -1,
869
+ "dns": -1,
870
+ "connect": -1,
871
+ "send": 0,
872
+ "wait": 0,
873
+ "receive": 0,
874
+ "ssl": -1
875
+ }
876
+ },
877
+ {
878
+ "requestId": "42504.79",
879
+ "startedDateTime": "1970-01-06T00:02:15.849Z",
880
+ "time": 8.087999999523163,
881
+ "request": {
882
+ "method": "GET",
883
+ "url": "https://fonts.gstatic.com/s/i/productlogos/translate/v14/24px.svg",
884
+ "httpVersion": "HTTP/1.1",
885
+ "headers": [
886
+ {
887
+ "name": "sec-ch-ua-platform",
888
+ "value": "\"Windows\""
889
+ },
890
+ {
891
+ "name": "Referer",
892
+ "value": "https://example.com/"
893
+ },
894
+ {
895
+ "name": "User-Agent",
896
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
897
+ },
898
+ {
899
+ "name": "sec-ch-ua",
900
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
901
+ },
902
+ {
903
+ "name": "sec-ch-ua-mobile",
904
+ "value": "?0"
905
+ }
906
+ ],
907
+ "queryString": [],
908
+ "cookies": [],
909
+ "headersSize": -1,
910
+ "bodySize": 0
911
+ },
912
+ "response": {
913
+ "status": 200,
914
+ "statusText": "",
915
+ "httpVersion": "h2",
916
+ "headers": [
917
+ {
918
+ "name": "content-encoding",
919
+ "value": "gzip"
920
+ },
921
+ {
922
+ "name": "age",
923
+ "value": "23439"
924
+ },
925
+ {
926
+ "name": "report-to",
927
+ "value": "{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}"
928
+ },
929
+ {
930
+ "name": "x-content-type-options",
931
+ "value": "nosniff"
932
+ },
933
+ {
934
+ "name": "expires",
935
+ "value": "Fri, 08 Jan 2027 12:43:31 GMT"
936
+ },
937
+ {
938
+ "name": "alt-svc",
939
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
940
+ },
941
+ {
942
+ "name": "date",
943
+ "value": "Thu, 08 Jan 2026 12:43:31 GMT"
944
+ },
945
+ {
946
+ "name": "last-modified",
947
+ "value": "Wed, 20 Apr 2022 14:24:23 GMT"
948
+ },
949
+ {
950
+ "name": "content-type",
951
+ "value": "image/svg+xml"
952
+ },
953
+ {
954
+ "name": "vary",
955
+ "value": "Accept-Encoding"
956
+ },
957
+ {
958
+ "name": "cache-control",
959
+ "value": "public, max-age=31536000"
960
+ },
961
+ {
962
+ "name": "cross-origin-opener-policy",
963
+ "value": "same-origin; report-to=\"apps-themes\""
964
+ },
965
+ {
966
+ "name": "cross-origin-resource-policy",
967
+ "value": "cross-origin"
968
+ },
969
+ {
970
+ "name": "content-security-policy-report-only",
971
+ "value": "require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes"
972
+ },
973
+ {
974
+ "name": "accept-ranges",
975
+ "value": "bytes"
976
+ },
977
+ {
978
+ "name": "access-control-allow-origin",
979
+ "value": "*"
980
+ },
981
+ {
982
+ "name": "content-length",
983
+ "value": "3340"
984
+ },
985
+ {
986
+ "name": "x-xss-protection",
987
+ "value": "0"
988
+ },
989
+ {
990
+ "name": "server",
991
+ "value": "sffe"
992
+ }
993
+ ],
994
+ "cookies": [],
995
+ "content": {
996
+ "size": 0,
997
+ "mimeType": "image/svg+xml"
998
+ },
999
+ "redirectURL": "",
1000
+ "headersSize": -1,
1001
+ "bodySize": -1
1002
+ },
1003
+ "cache": {},
1004
+ "timings": {
1005
+ "blocked": -1,
1006
+ "dns": -1,
1007
+ "connect": -1,
1008
+ "send": 0,
1009
+ "wait": 0,
1010
+ "receive": 0,
1011
+ "ssl": -1
1012
+ }
1013
+ },
1014
+ {
1015
+ "requestId": "42504.153",
1016
+ "startedDateTime": "1970-01-06T00:02:15.966Z",
1017
+ "time": 8.870000004768372,
1018
+ "request": {
1019
+ "method": "GET",
1020
+ "url": "chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/content-all.css",
1021
+ "httpVersion": "HTTP/1.1",
1022
+ "headers": [
1023
+ {
1024
+ "name": "User-Agent",
1025
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1026
+ },
1027
+ {
1028
+ "name": "Referer",
1029
+ "value": ""
1030
+ }
1031
+ ],
1032
+ "queryString": [],
1033
+ "cookies": [],
1034
+ "headersSize": -1,
1035
+ "bodySize": 0
1036
+ },
1037
+ "response": {
1038
+ "status": 200,
1039
+ "statusText": "OK",
1040
+ "httpVersion": "chrome-extension",
1041
+ "headers": [
1042
+ {
1043
+ "name": "Content-Security-Policy",
1044
+ "value": "script-src 'self' http://localhost:8097/ 'wasm-unsafe-eval'; object-src 'self'"
1045
+ },
1046
+ {
1047
+ "name": "Access-Control-Allow-Origin",
1048
+ "value": "*"
1049
+ },
1050
+ {
1051
+ "name": "cache-control",
1052
+ "value": "no-cache"
1053
+ },
1054
+ {
1055
+ "name": "ETag",
1056
+ "value": "\"6EFukkcw9POrg3HEASMFCUprtRI=\""
1057
+ },
1058
+ {
1059
+ "name": "Content-Type",
1060
+ "value": "text/css"
1061
+ },
1062
+ {
1063
+ "name": "Last-Modified",
1064
+ "value": "Wed, 24 Dec 2025 10:45:24 GMT"
1065
+ },
1066
+ {
1067
+ "name": "Cross-Origin-Resource-Policy",
1068
+ "value": "cross-origin"
1069
+ }
1070
+ ],
1071
+ "cookies": [],
1072
+ "content": {
1073
+ "size": 0,
1074
+ "mimeType": "text/css"
1075
+ },
1076
+ "redirectURL": "",
1077
+ "headersSize": -1,
1078
+ "bodySize": -1
1079
+ },
1080
+ "cache": {},
1081
+ "timings": {
1082
+ "blocked": -1,
1083
+ "dns": -1,
1084
+ "connect": -1,
1085
+ "send": 0,
1086
+ "wait": 0,
1087
+ "receive": 0,
1088
+ "ssl": -1
1089
+ }
1090
+ },
1091
+ {
1092
+ "requestId": "42504.154",
1093
+ "startedDateTime": "1970-01-06T00:02:15.967Z",
1094
+ "time": 7.671000003814697,
1095
+ "request": {
1096
+ "method": "GET",
1097
+ "url": "chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/fonts/fonts.css",
1098
+ "httpVersion": "HTTP/1.1",
1099
+ "headers": [
1100
+ {
1101
+ "name": "User-Agent",
1102
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1103
+ },
1104
+ {
1105
+ "name": "Referer",
1106
+ "value": ""
1107
+ }
1108
+ ],
1109
+ "queryString": [],
1110
+ "cookies": [],
1111
+ "headersSize": -1,
1112
+ "bodySize": 0
1113
+ },
1114
+ "response": {
1115
+ "status": 200,
1116
+ "statusText": "OK",
1117
+ "httpVersion": "chrome-extension",
1118
+ "headers": [
1119
+ {
1120
+ "name": "Content-Security-Policy",
1121
+ "value": "script-src 'self' http://localhost:8097/ 'wasm-unsafe-eval'; object-src 'self'"
1122
+ },
1123
+ {
1124
+ "name": "Access-Control-Allow-Origin",
1125
+ "value": "*"
1126
+ },
1127
+ {
1128
+ "name": "cache-control",
1129
+ "value": "no-cache"
1130
+ },
1131
+ {
1132
+ "name": "ETag",
1133
+ "value": "\"MCfTa0IgEo1tcaOdc3oO1fSKPcs=\""
1134
+ },
1135
+ {
1136
+ "name": "Content-Type",
1137
+ "value": "text/css"
1138
+ },
1139
+ {
1140
+ "name": "Last-Modified",
1141
+ "value": "Wed, 24 Dec 2025 10:45:20 GMT"
1142
+ },
1143
+ {
1144
+ "name": "Cross-Origin-Resource-Policy",
1145
+ "value": "cross-origin"
1146
+ }
1147
+ ],
1148
+ "cookies": [],
1149
+ "content": {
1150
+ "size": 0,
1151
+ "mimeType": "text/css"
1152
+ },
1153
+ "redirectURL": "",
1154
+ "headersSize": -1,
1155
+ "bodySize": -1
1156
+ },
1157
+ "cache": {},
1158
+ "timings": {
1159
+ "blocked": -1,
1160
+ "dns": -1,
1161
+ "connect": -1,
1162
+ "send": 0,
1163
+ "wait": 0,
1164
+ "receive": 0,
1165
+ "ssl": -1
1166
+ }
1167
+ },
1168
+ {
1169
+ "requestId": "42504.155",
1170
+ "startedDateTime": "1970-01-06T00:02:15.993Z",
1171
+ "time": 4.273000001907349,
1172
+ "request": {
1173
+ "method": "GET",
1174
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/main.svg",
1175
+ "httpVersion": "HTTP/1.1",
1176
+ "headers": [
1177
+ {
1178
+ "name": "User-Agent",
1179
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1180
+ },
1181
+ {
1182
+ "name": "Referer",
1183
+ "value": ""
1184
+ }
1185
+ ],
1186
+ "queryString": [],
1187
+ "cookies": [],
1188
+ "headersSize": -1,
1189
+ "bodySize": 0
1190
+ },
1191
+ "response": {
1192
+ "status": 200,
1193
+ "statusText": "OK",
1194
+ "httpVersion": "chrome-extension",
1195
+ "headers": [
1196
+ {
1197
+ "name": "Content-Security-Policy",
1198
+ "value": "script-src 'self'; object-src 'self'"
1199
+ },
1200
+ {
1201
+ "name": "Access-Control-Allow-Origin",
1202
+ "value": "*"
1203
+ },
1204
+ {
1205
+ "name": "cache-control",
1206
+ "value": "no-cache"
1207
+ },
1208
+ {
1209
+ "name": "ETag",
1210
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1211
+ },
1212
+ {
1213
+ "name": "Content-Type",
1214
+ "value": "image/svg+xml"
1215
+ },
1216
+ {
1217
+ "name": "Last-Modified",
1218
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1219
+ },
1220
+ {
1221
+ "name": "Cross-Origin-Resource-Policy",
1222
+ "value": "cross-origin"
1223
+ }
1224
+ ],
1225
+ "cookies": [],
1226
+ "content": {
1227
+ "size": 0,
1228
+ "mimeType": "image/svg+xml"
1229
+ },
1230
+ "redirectURL": "",
1231
+ "headersSize": -1,
1232
+ "bodySize": -1
1233
+ },
1234
+ "cache": {},
1235
+ "timings": {
1236
+ "blocked": -1,
1237
+ "dns": -1,
1238
+ "connect": -1,
1239
+ "send": 0,
1240
+ "wait": 0,
1241
+ "receive": 0,
1242
+ "ssl": -1
1243
+ }
1244
+ },
1245
+ {
1246
+ "requestId": "42504.156",
1247
+ "startedDateTime": "1970-01-06T00:02:15.993Z",
1248
+ "time": 4.208000004291534,
1249
+ "request": {
1250
+ "method": "GET",
1251
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/arrows-flip-backward.svg",
1252
+ "httpVersion": "HTTP/1.1",
1253
+ "headers": [
1254
+ {
1255
+ "name": "User-Agent",
1256
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1257
+ },
1258
+ {
1259
+ "name": "Referer",
1260
+ "value": ""
1261
+ }
1262
+ ],
1263
+ "queryString": [],
1264
+ "cookies": [],
1265
+ "headersSize": -1,
1266
+ "bodySize": 0
1267
+ },
1268
+ "response": {
1269
+ "status": 200,
1270
+ "statusText": "OK",
1271
+ "httpVersion": "chrome-extension",
1272
+ "headers": [
1273
+ {
1274
+ "name": "Content-Security-Policy",
1275
+ "value": "script-src 'self'; object-src 'self'"
1276
+ },
1277
+ {
1278
+ "name": "Access-Control-Allow-Origin",
1279
+ "value": "*"
1280
+ },
1281
+ {
1282
+ "name": "cache-control",
1283
+ "value": "no-cache"
1284
+ },
1285
+ {
1286
+ "name": "ETag",
1287
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1288
+ },
1289
+ {
1290
+ "name": "Content-Type",
1291
+ "value": "image/svg+xml"
1292
+ },
1293
+ {
1294
+ "name": "Last-Modified",
1295
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1296
+ },
1297
+ {
1298
+ "name": "Cross-Origin-Resource-Policy",
1299
+ "value": "cross-origin"
1300
+ }
1301
+ ],
1302
+ "cookies": [],
1303
+ "content": {
1304
+ "size": 0,
1305
+ "mimeType": "image/svg+xml"
1306
+ },
1307
+ "redirectURL": "",
1308
+ "headersSize": -1,
1309
+ "bodySize": -1
1310
+ },
1311
+ "cache": {},
1312
+ "timings": {
1313
+ "blocked": -1,
1314
+ "dns": -1,
1315
+ "connect": -1,
1316
+ "send": 0,
1317
+ "wait": 0,
1318
+ "receive": 0,
1319
+ "ssl": -1
1320
+ }
1321
+ },
1322
+ {
1323
+ "requestId": "42504.157",
1324
+ "startedDateTime": "1970-01-06T00:02:15.993Z",
1325
+ "time": 4.875,
1326
+ "request": {
1327
+ "method": "GET",
1328
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/editor-pencil-02.svg",
1329
+ "httpVersion": "HTTP/1.1",
1330
+ "headers": [
1331
+ {
1332
+ "name": "User-Agent",
1333
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1334
+ },
1335
+ {
1336
+ "name": "Referer",
1337
+ "value": ""
1338
+ }
1339
+ ],
1340
+ "queryString": [],
1341
+ "cookies": [],
1342
+ "headersSize": -1,
1343
+ "bodySize": 0
1344
+ },
1345
+ "response": {
1346
+ "status": 200,
1347
+ "statusText": "OK",
1348
+ "httpVersion": "chrome-extension",
1349
+ "headers": [
1350
+ {
1351
+ "name": "Content-Security-Policy",
1352
+ "value": "script-src 'self'; object-src 'self'"
1353
+ },
1354
+ {
1355
+ "name": "Access-Control-Allow-Origin",
1356
+ "value": "*"
1357
+ },
1358
+ {
1359
+ "name": "cache-control",
1360
+ "value": "no-cache"
1361
+ },
1362
+ {
1363
+ "name": "ETag",
1364
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1365
+ },
1366
+ {
1367
+ "name": "Content-Type",
1368
+ "value": "image/svg+xml"
1369
+ },
1370
+ {
1371
+ "name": "Last-Modified",
1372
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1373
+ },
1374
+ {
1375
+ "name": "Cross-Origin-Resource-Policy",
1376
+ "value": "cross-origin"
1377
+ }
1378
+ ],
1379
+ "cookies": [],
1380
+ "content": {
1381
+ "size": 0,
1382
+ "mimeType": "image/svg+xml"
1383
+ },
1384
+ "redirectURL": "",
1385
+ "headersSize": -1,
1386
+ "bodySize": -1
1387
+ },
1388
+ "cache": {},
1389
+ "timings": {
1390
+ "blocked": -1,
1391
+ "dns": -1,
1392
+ "connect": -1,
1393
+ "send": 0,
1394
+ "wait": 0,
1395
+ "receive": 0,
1396
+ "ssl": -1
1397
+ }
1398
+ },
1399
+ {
1400
+ "requestId": "42504.158",
1401
+ "startedDateTime": "1970-01-06T00:02:15.993Z",
1402
+ "time": 5.019999980926514,
1403
+ "request": {
1404
+ "method": "GET",
1405
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/editor-roller-brush.svg",
1406
+ "httpVersion": "HTTP/1.1",
1407
+ "headers": [
1408
+ {
1409
+ "name": "User-Agent",
1410
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1411
+ },
1412
+ {
1413
+ "name": "Referer",
1414
+ "value": ""
1415
+ }
1416
+ ],
1417
+ "queryString": [],
1418
+ "cookies": [],
1419
+ "headersSize": -1,
1420
+ "bodySize": 0
1421
+ },
1422
+ "response": {
1423
+ "status": 200,
1424
+ "statusText": "OK",
1425
+ "httpVersion": "chrome-extension",
1426
+ "headers": [
1427
+ {
1428
+ "name": "Content-Security-Policy",
1429
+ "value": "script-src 'self'; object-src 'self'"
1430
+ },
1431
+ {
1432
+ "name": "Access-Control-Allow-Origin",
1433
+ "value": "*"
1434
+ },
1435
+ {
1436
+ "name": "cache-control",
1437
+ "value": "no-cache"
1438
+ },
1439
+ {
1440
+ "name": "ETag",
1441
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1442
+ },
1443
+ {
1444
+ "name": "Content-Type",
1445
+ "value": "image/svg+xml"
1446
+ },
1447
+ {
1448
+ "name": "Last-Modified",
1449
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1450
+ },
1451
+ {
1452
+ "name": "Cross-Origin-Resource-Policy",
1453
+ "value": "cross-origin"
1454
+ }
1455
+ ],
1456
+ "cookies": [],
1457
+ "content": {
1458
+ "size": 0,
1459
+ "mimeType": "image/svg+xml"
1460
+ },
1461
+ "redirectURL": "",
1462
+ "headersSize": -1,
1463
+ "bodySize": -1
1464
+ },
1465
+ "cache": {},
1466
+ "timings": {
1467
+ "blocked": -1,
1468
+ "dns": -1,
1469
+ "connect": -1,
1470
+ "send": 0,
1471
+ "wait": 0,
1472
+ "receive": 0,
1473
+ "ssl": -1
1474
+ }
1475
+ },
1476
+ {
1477
+ "requestId": "42504.159",
1478
+ "startedDateTime": "1970-01-06T00:02:15.994Z",
1479
+ "time": 4.071999967098236,
1480
+ "request": {
1481
+ "method": "GET",
1482
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/editor-dotpoints-02.svg",
1483
+ "httpVersion": "HTTP/1.1",
1484
+ "headers": [
1485
+ {
1486
+ "name": "User-Agent",
1487
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1488
+ },
1489
+ {
1490
+ "name": "Referer",
1491
+ "value": ""
1492
+ }
1493
+ ],
1494
+ "queryString": [],
1495
+ "cookies": [],
1496
+ "headersSize": -1,
1497
+ "bodySize": 0
1498
+ },
1499
+ "response": {
1500
+ "status": 200,
1501
+ "statusText": "OK",
1502
+ "httpVersion": "chrome-extension",
1503
+ "headers": [
1504
+ {
1505
+ "name": "Content-Security-Policy",
1506
+ "value": "script-src 'self'; object-src 'self'"
1507
+ },
1508
+ {
1509
+ "name": "Access-Control-Allow-Origin",
1510
+ "value": "*"
1511
+ },
1512
+ {
1513
+ "name": "cache-control",
1514
+ "value": "no-cache"
1515
+ },
1516
+ {
1517
+ "name": "ETag",
1518
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1519
+ },
1520
+ {
1521
+ "name": "Content-Type",
1522
+ "value": "image/svg+xml"
1523
+ },
1524
+ {
1525
+ "name": "Last-Modified",
1526
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1527
+ },
1528
+ {
1529
+ "name": "Cross-Origin-Resource-Policy",
1530
+ "value": "cross-origin"
1531
+ }
1532
+ ],
1533
+ "cookies": [],
1534
+ "content": {
1535
+ "size": 0,
1536
+ "mimeType": "image/svg+xml"
1537
+ },
1538
+ "redirectURL": "",
1539
+ "headersSize": -1,
1540
+ "bodySize": -1
1541
+ },
1542
+ "cache": {},
1543
+ "timings": {
1544
+ "blocked": -1,
1545
+ "dns": -1,
1546
+ "connect": -1,
1547
+ "send": 0,
1548
+ "wait": 0,
1549
+ "receive": 0,
1550
+ "ssl": -1
1551
+ }
1552
+ },
1553
+ {
1554
+ "requestId": "42504.160",
1555
+ "startedDateTime": "1970-01-06T00:02:15.994Z",
1556
+ "time": 3.902999997138977,
1557
+ "request": {
1558
+ "method": "GET",
1559
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/files-file-search-04.svg",
1560
+ "httpVersion": "HTTP/1.1",
1561
+ "headers": [
1562
+ {
1563
+ "name": "User-Agent",
1564
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1565
+ },
1566
+ {
1567
+ "name": "Referer",
1568
+ "value": ""
1569
+ }
1570
+ ],
1571
+ "queryString": [],
1572
+ "cookies": [],
1573
+ "headersSize": -1,
1574
+ "bodySize": 0
1575
+ },
1576
+ "response": {
1577
+ "status": 200,
1578
+ "statusText": "OK",
1579
+ "httpVersion": "chrome-extension",
1580
+ "headers": [
1581
+ {
1582
+ "name": "Content-Security-Policy",
1583
+ "value": "script-src 'self'; object-src 'self'"
1584
+ },
1585
+ {
1586
+ "name": "Access-Control-Allow-Origin",
1587
+ "value": "*"
1588
+ },
1589
+ {
1590
+ "name": "cache-control",
1591
+ "value": "no-cache"
1592
+ },
1593
+ {
1594
+ "name": "ETag",
1595
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1596
+ },
1597
+ {
1598
+ "name": "Content-Type",
1599
+ "value": "image/svg+xml"
1600
+ },
1601
+ {
1602
+ "name": "Last-Modified",
1603
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1604
+ },
1605
+ {
1606
+ "name": "Cross-Origin-Resource-Policy",
1607
+ "value": "cross-origin"
1608
+ }
1609
+ ],
1610
+ "cookies": [],
1611
+ "content": {
1612
+ "size": 0,
1613
+ "mimeType": "image/svg+xml"
1614
+ },
1615
+ "redirectURL": "",
1616
+ "headersSize": -1,
1617
+ "bodySize": -1
1618
+ },
1619
+ "cache": {},
1620
+ "timings": {
1621
+ "blocked": -1,
1622
+ "dns": -1,
1623
+ "connect": -1,
1624
+ "send": 0,
1625
+ "wait": 0,
1626
+ "receive": 0,
1627
+ "ssl": -1
1628
+ }
1629
+ },
1630
+ {
1631
+ "requestId": "42504.161",
1632
+ "startedDateTime": "1970-01-06T00:02:15.994Z",
1633
+ "time": 4.148999989032745,
1634
+ "request": {
1635
+ "method": "GET",
1636
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/communication-annotation-dots.svg",
1637
+ "httpVersion": "HTTP/1.1",
1638
+ "headers": [
1639
+ {
1640
+ "name": "User-Agent",
1641
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1642
+ },
1643
+ {
1644
+ "name": "Referer",
1645
+ "value": ""
1646
+ }
1647
+ ],
1648
+ "queryString": [],
1649
+ "cookies": [],
1650
+ "headersSize": -1,
1651
+ "bodySize": 0
1652
+ },
1653
+ "response": {
1654
+ "status": 200,
1655
+ "statusText": "OK",
1656
+ "httpVersion": "chrome-extension",
1657
+ "headers": [
1658
+ {
1659
+ "name": "Content-Security-Policy",
1660
+ "value": "script-src 'self'; object-src 'self'"
1661
+ },
1662
+ {
1663
+ "name": "Access-Control-Allow-Origin",
1664
+ "value": "*"
1665
+ },
1666
+ {
1667
+ "name": "cache-control",
1668
+ "value": "no-cache"
1669
+ },
1670
+ {
1671
+ "name": "ETag",
1672
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1673
+ },
1674
+ {
1675
+ "name": "Content-Type",
1676
+ "value": "image/svg+xml"
1677
+ },
1678
+ {
1679
+ "name": "Last-Modified",
1680
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1681
+ },
1682
+ {
1683
+ "name": "Cross-Origin-Resource-Policy",
1684
+ "value": "cross-origin"
1685
+ }
1686
+ ],
1687
+ "cookies": [],
1688
+ "content": {
1689
+ "size": 0,
1690
+ "mimeType": "image/svg+xml"
1691
+ },
1692
+ "redirectURL": "",
1693
+ "headersSize": -1,
1694
+ "bodySize": -1
1695
+ },
1696
+ "cache": {},
1697
+ "timings": {
1698
+ "blocked": -1,
1699
+ "dns": -1,
1700
+ "connect": -1,
1701
+ "send": 0,
1702
+ "wait": 0,
1703
+ "receive": 0,
1704
+ "ssl": -1
1705
+ }
1706
+ },
1707
+ {
1708
+ "requestId": "42504.162",
1709
+ "startedDateTime": "1970-01-06T00:02:15.994Z",
1710
+ "time": 7.364999949932098,
1711
+ "request": {
1712
+ "method": "GET",
1713
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/education-atom-02.svg",
1714
+ "httpVersion": "HTTP/1.1",
1715
+ "headers": [
1716
+ {
1717
+ "name": "User-Agent",
1718
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1719
+ },
1720
+ {
1721
+ "name": "Referer",
1722
+ "value": ""
1723
+ }
1724
+ ],
1725
+ "queryString": [],
1726
+ "cookies": [],
1727
+ "headersSize": -1,
1728
+ "bodySize": 0
1729
+ },
1730
+ "response": {
1731
+ "status": 200,
1732
+ "statusText": "OK",
1733
+ "httpVersion": "chrome-extension",
1734
+ "headers": [
1735
+ {
1736
+ "name": "Content-Security-Policy",
1737
+ "value": "script-src 'self'; object-src 'self'"
1738
+ },
1739
+ {
1740
+ "name": "Access-Control-Allow-Origin",
1741
+ "value": "*"
1742
+ },
1743
+ {
1744
+ "name": "cache-control",
1745
+ "value": "no-cache"
1746
+ },
1747
+ {
1748
+ "name": "ETag",
1749
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1750
+ },
1751
+ {
1752
+ "name": "Content-Type",
1753
+ "value": "image/svg+xml"
1754
+ },
1755
+ {
1756
+ "name": "Last-Modified",
1757
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1758
+ },
1759
+ {
1760
+ "name": "Cross-Origin-Resource-Policy",
1761
+ "value": "cross-origin"
1762
+ }
1763
+ ],
1764
+ "cookies": [],
1765
+ "content": {
1766
+ "size": 0,
1767
+ "mimeType": "image/svg+xml"
1768
+ },
1769
+ "redirectURL": "",
1770
+ "headersSize": -1,
1771
+ "bodySize": -1
1772
+ },
1773
+ "cache": {},
1774
+ "timings": {
1775
+ "blocked": -1,
1776
+ "dns": -1,
1777
+ "connect": -1,
1778
+ "send": 0,
1779
+ "wait": 0,
1780
+ "receive": 0,
1781
+ "ssl": -1
1782
+ }
1783
+ },
1784
+ {
1785
+ "requestId": "42504.163",
1786
+ "startedDateTime": "1970-01-06T00:02:15.994Z",
1787
+ "time": 5.702000021934509,
1788
+ "request": {
1789
+ "method": "GET",
1790
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/general-search-refraction.svg",
1791
+ "httpVersion": "HTTP/1.1",
1792
+ "headers": [
1793
+ {
1794
+ "name": "User-Agent",
1795
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1796
+ },
1797
+ {
1798
+ "name": "Referer",
1799
+ "value": ""
1800
+ }
1801
+ ],
1802
+ "queryString": [],
1803
+ "cookies": [],
1804
+ "headersSize": -1,
1805
+ "bodySize": 0
1806
+ },
1807
+ "response": {
1808
+ "status": 200,
1809
+ "statusText": "OK",
1810
+ "httpVersion": "chrome-extension",
1811
+ "headers": [
1812
+ {
1813
+ "name": "Content-Security-Policy",
1814
+ "value": "script-src 'self'; object-src 'self'"
1815
+ },
1816
+ {
1817
+ "name": "Access-Control-Allow-Origin",
1818
+ "value": "*"
1819
+ },
1820
+ {
1821
+ "name": "cache-control",
1822
+ "value": "no-cache"
1823
+ },
1824
+ {
1825
+ "name": "ETag",
1826
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1827
+ },
1828
+ {
1829
+ "name": "Content-Type",
1830
+ "value": "image/svg+xml"
1831
+ },
1832
+ {
1833
+ "name": "Last-Modified",
1834
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1835
+ },
1836
+ {
1837
+ "name": "Cross-Origin-Resource-Policy",
1838
+ "value": "cross-origin"
1839
+ }
1840
+ ],
1841
+ "cookies": [],
1842
+ "content": {
1843
+ "size": 0,
1844
+ "mimeType": "image/svg+xml"
1845
+ },
1846
+ "redirectURL": "",
1847
+ "headersSize": -1,
1848
+ "bodySize": -1
1849
+ },
1850
+ "cache": {},
1851
+ "timings": {
1852
+ "blocked": -1,
1853
+ "dns": -1,
1854
+ "connect": -1,
1855
+ "send": 0,
1856
+ "wait": 0,
1857
+ "receive": 0,
1858
+ "ssl": -1
1859
+ }
1860
+ },
1861
+ {
1862
+ "requestId": "42504.164",
1863
+ "startedDateTime": "1970-01-06T00:02:15.995Z",
1864
+ "time": 7.526000022888184,
1865
+ "request": {
1866
+ "method": "GET",
1867
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/layout-grid-03.svg",
1868
+ "httpVersion": "HTTP/1.1",
1869
+ "headers": [
1870
+ {
1871
+ "name": "User-Agent",
1872
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1873
+ },
1874
+ {
1875
+ "name": "Referer",
1876
+ "value": ""
1877
+ }
1878
+ ],
1879
+ "queryString": [],
1880
+ "cookies": [],
1881
+ "headersSize": -1,
1882
+ "bodySize": 0
1883
+ },
1884
+ "response": {
1885
+ "status": 200,
1886
+ "statusText": "OK",
1887
+ "httpVersion": "chrome-extension",
1888
+ "headers": [
1889
+ {
1890
+ "name": "Content-Security-Policy",
1891
+ "value": "script-src 'self'; object-src 'self'"
1892
+ },
1893
+ {
1894
+ "name": "Access-Control-Allow-Origin",
1895
+ "value": "*"
1896
+ },
1897
+ {
1898
+ "name": "cache-control",
1899
+ "value": "no-cache"
1900
+ },
1901
+ {
1902
+ "name": "ETag",
1903
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1904
+ },
1905
+ {
1906
+ "name": "Content-Type",
1907
+ "value": "image/svg+xml"
1908
+ },
1909
+ {
1910
+ "name": "Last-Modified",
1911
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1912
+ },
1913
+ {
1914
+ "name": "Cross-Origin-Resource-Policy",
1915
+ "value": "cross-origin"
1916
+ }
1917
+ ],
1918
+ "cookies": [],
1919
+ "content": {
1920
+ "size": 0,
1921
+ "mimeType": "image/svg+xml"
1922
+ },
1923
+ "redirectURL": "",
1924
+ "headersSize": -1,
1925
+ "bodySize": -1
1926
+ },
1927
+ "cache": {},
1928
+ "timings": {
1929
+ "blocked": -1,
1930
+ "dns": -1,
1931
+ "connect": -1,
1932
+ "send": 0,
1933
+ "wait": 0,
1934
+ "receive": 0,
1935
+ "ssl": -1
1936
+ }
1937
+ },
1938
+ {
1939
+ "requestId": "42504.165",
1940
+ "startedDateTime": "1970-01-06T00:02:15.995Z",
1941
+ "time": 6.657000005245209,
1942
+ "request": {
1943
+ "method": "GET",
1944
+ "url": "chrome-extension://eanggfilgoajaocelnaflolkadkeghjp/img/commands/close.svg",
1945
+ "httpVersion": "HTTP/1.1",
1946
+ "headers": [
1947
+ {
1948
+ "name": "User-Agent",
1949
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
1950
+ },
1951
+ {
1952
+ "name": "Referer",
1953
+ "value": ""
1954
+ }
1955
+ ],
1956
+ "queryString": [],
1957
+ "cookies": [],
1958
+ "headersSize": -1,
1959
+ "bodySize": 0
1960
+ },
1961
+ "response": {
1962
+ "status": 200,
1963
+ "statusText": "OK",
1964
+ "httpVersion": "chrome-extension",
1965
+ "headers": [
1966
+ {
1967
+ "name": "Content-Security-Policy",
1968
+ "value": "script-src 'self'; object-src 'self'"
1969
+ },
1970
+ {
1971
+ "name": "Access-Control-Allow-Origin",
1972
+ "value": "*"
1973
+ },
1974
+ {
1975
+ "name": "cache-control",
1976
+ "value": "no-cache"
1977
+ },
1978
+ {
1979
+ "name": "ETag",
1980
+ "value": "\"QWyoA2cxJ0HzXlJqI2otHcLmI+s=\""
1981
+ },
1982
+ {
1983
+ "name": "Content-Type",
1984
+ "value": "image/svg+xml"
1985
+ },
1986
+ {
1987
+ "name": "Last-Modified",
1988
+ "value": "Fri, 26 Dec 2025 10:18:04 GMT"
1989
+ },
1990
+ {
1991
+ "name": "Cross-Origin-Resource-Policy",
1992
+ "value": "cross-origin"
1993
+ }
1994
+ ],
1995
+ "cookies": [],
1996
+ "content": {
1997
+ "size": 0,
1998
+ "mimeType": "image/svg+xml"
1999
+ },
2000
+ "redirectURL": "",
2001
+ "headersSize": -1,
2002
+ "bodySize": -1
2003
+ },
2004
+ "cache": {},
2005
+ "timings": {
2006
+ "blocked": -1,
2007
+ "dns": -1,
2008
+ "connect": -1,
2009
+ "send": 0,
2010
+ "wait": 0,
2011
+ "receive": 0,
2012
+ "ssl": -1
2013
+ }
2014
+ },
2015
+ {
2016
+ "requestId": "12679406028D5BC6FFDF2E8A09B000CA",
2017
+ "startedDateTime": "1970-01-06T00:02:16.056Z",
2018
+ "time": 157.7189999818802,
2019
+ "request": {
2020
+ "method": "OPTIONS",
2021
+ "url": "https://translate-pa.googleapis.com/v1/translateHtml",
2022
+ "httpVersion": "HTTP/1.1",
2023
+ "headers": [
2024
+ {
2025
+ "name": "Accept",
2026
+ "value": "*/*"
2027
+ },
2028
+ {
2029
+ "name": "Access-Control-Request-Headers",
2030
+ "value": "content-type,x-goog-api-key"
2031
+ },
2032
+ {
2033
+ "name": "Access-Control-Request-Method",
2034
+ "value": "POST"
2035
+ },
2036
+ {
2037
+ "name": "Origin",
2038
+ "value": "https://example.com"
2039
+ },
2040
+ {
2041
+ "name": "Sec-Fetch-Mode",
2042
+ "value": "cors"
2043
+ },
2044
+ {
2045
+ "name": "User-Agent",
2046
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2047
+ }
2048
+ ],
2049
+ "queryString": [],
2050
+ "cookies": [],
2051
+ "headersSize": -1,
2052
+ "bodySize": 0
2053
+ },
2054
+ "response": {
2055
+ "status": 200,
2056
+ "statusText": "",
2057
+ "httpVersion": "h2",
2058
+ "headers": [
2059
+ {
2060
+ "name": "access-control-allow-headers",
2061
+ "value": "content-type,x-goog-api-key"
2062
+ },
2063
+ {
2064
+ "name": "access-control-allow-methods",
2065
+ "value": "DELETE,GET,HEAD,OPTIONS,PATCH,POST,PUT"
2066
+ },
2067
+ {
2068
+ "name": "access-control-allow-origin",
2069
+ "value": "https://example.com"
2070
+ },
2071
+ {
2072
+ "name": "access-control-max-age",
2073
+ "value": "3600"
2074
+ },
2075
+ {
2076
+ "name": "alt-svc",
2077
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
2078
+ },
2079
+ {
2080
+ "name": "content-length",
2081
+ "value": "0"
2082
+ },
2083
+ {
2084
+ "name": "content-type",
2085
+ "value": "text/html"
2086
+ },
2087
+ {
2088
+ "name": "date",
2089
+ "value": "Fri, 09 Jan 2026 03:38:28 GMT"
2090
+ },
2091
+ {
2092
+ "name": "server",
2093
+ "value": "ESF"
2094
+ },
2095
+ {
2096
+ "name": "vary",
2097
+ "value": "origin\nreferer\nx-origin"
2098
+ },
2099
+ {
2100
+ "name": "x-content-type-options",
2101
+ "value": "nosniff"
2102
+ },
2103
+ {
2104
+ "name": "x-frame-options",
2105
+ "value": "SAMEORIGIN"
2106
+ },
2107
+ {
2108
+ "name": "x-xss-protection",
2109
+ "value": "0"
2110
+ }
2111
+ ],
2112
+ "cookies": [],
2113
+ "content": {
2114
+ "size": 0,
2115
+ "mimeType": "text/html"
2116
+ },
2117
+ "redirectURL": "",
2118
+ "headersSize": -1,
2119
+ "bodySize": -1
2120
+ },
2121
+ "cache": {},
2122
+ "timings": {
2123
+ "blocked": -1,
2124
+ "dns": -1,
2125
+ "connect": -1,
2126
+ "send": 0,
2127
+ "wait": 0,
2128
+ "receive": 0,
2129
+ "ssl": -1
2130
+ }
2131
+ },
2132
+ {
2133
+ "requestId": "FD4E9946C3001680B65F547D59CF05DA",
2134
+ "startedDateTime": "1970-01-06T00:02:16.057Z",
2135
+ "time": 156.42699998617172,
2136
+ "request": {
2137
+ "method": "OPTIONS",
2138
+ "url": "https://translate-pa.googleapis.com/v1/translateHtml",
2139
+ "httpVersion": "HTTP/1.1",
2140
+ "headers": [
2141
+ {
2142
+ "name": "Accept",
2143
+ "value": "*/*"
2144
+ },
2145
+ {
2146
+ "name": "Access-Control-Request-Headers",
2147
+ "value": "content-type,x-goog-api-key"
2148
+ },
2149
+ {
2150
+ "name": "Access-Control-Request-Method",
2151
+ "value": "POST"
2152
+ },
2153
+ {
2154
+ "name": "Origin",
2155
+ "value": "https://example.com"
2156
+ },
2157
+ {
2158
+ "name": "Sec-Fetch-Mode",
2159
+ "value": "cors"
2160
+ },
2161
+ {
2162
+ "name": "User-Agent",
2163
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2164
+ }
2165
+ ],
2166
+ "queryString": [],
2167
+ "cookies": [],
2168
+ "headersSize": -1,
2169
+ "bodySize": 0
2170
+ },
2171
+ "response": {
2172
+ "status": 200,
2173
+ "statusText": "",
2174
+ "httpVersion": "h2",
2175
+ "headers": [
2176
+ {
2177
+ "name": "access-control-allow-headers",
2178
+ "value": "content-type,x-goog-api-key"
2179
+ },
2180
+ {
2181
+ "name": "access-control-allow-methods",
2182
+ "value": "DELETE,GET,HEAD,OPTIONS,PATCH,POST,PUT"
2183
+ },
2184
+ {
2185
+ "name": "access-control-allow-origin",
2186
+ "value": "https://example.com"
2187
+ },
2188
+ {
2189
+ "name": "access-control-max-age",
2190
+ "value": "3600"
2191
+ },
2192
+ {
2193
+ "name": "alt-svc",
2194
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
2195
+ },
2196
+ {
2197
+ "name": "content-length",
2198
+ "value": "0"
2199
+ },
2200
+ {
2201
+ "name": "content-type",
2202
+ "value": "text/html"
2203
+ },
2204
+ {
2205
+ "name": "date",
2206
+ "value": "Fri, 09 Jan 2026 03:38:28 GMT"
2207
+ },
2208
+ {
2209
+ "name": "server",
2210
+ "value": "ESF"
2211
+ },
2212
+ {
2213
+ "name": "vary",
2214
+ "value": "origin\nreferer\nx-origin"
2215
+ },
2216
+ {
2217
+ "name": "x-content-type-options",
2218
+ "value": "nosniff"
2219
+ },
2220
+ {
2221
+ "name": "x-frame-options",
2222
+ "value": "SAMEORIGIN"
2223
+ },
2224
+ {
2225
+ "name": "x-xss-protection",
2226
+ "value": "0"
2227
+ }
2228
+ ],
2229
+ "cookies": [],
2230
+ "content": {
2231
+ "size": 0,
2232
+ "mimeType": "text/html"
2233
+ },
2234
+ "redirectURL": "",
2235
+ "headersSize": -1,
2236
+ "bodySize": -1
2237
+ },
2238
+ "cache": {},
2239
+ "timings": {
2240
+ "blocked": -1,
2241
+ "dns": -1,
2242
+ "connect": -1,
2243
+ "send": 0,
2244
+ "wait": 0,
2245
+ "receive": 0,
2246
+ "ssl": -1
2247
+ }
2248
+ },
2249
+ {
2250
+ "requestId": "42504.166",
2251
+ "startedDateTime": "1970-01-06T00:02:16.050Z",
2252
+ "time": 246.0929999947548,
2253
+ "request": {
2254
+ "method": "POST",
2255
+ "url": "https://translate-pa.googleapis.com/v1/translateHtml",
2256
+ "httpVersion": "HTTP/1.1",
2257
+ "headers": [
2258
+ {
2259
+ "name": "X-goog-api-key",
2260
+ "value": "AIzaSyATBXajvzQLTDHEQbcpq0Ihe0vWDHmO520"
2261
+ },
2262
+ {
2263
+ "name": "sec-ch-ua-platform",
2264
+ "value": "\"Windows\""
2265
+ },
2266
+ {
2267
+ "name": "Referer",
2268
+ "value": "https://example.com/"
2269
+ },
2270
+ {
2271
+ "name": "User-Agent",
2272
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2273
+ },
2274
+ {
2275
+ "name": "sec-ch-ua",
2276
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
2277
+ },
2278
+ {
2279
+ "name": "Content-Type",
2280
+ "value": "application/json+protobuf"
2281
+ },
2282
+ {
2283
+ "name": "sec-ch-ua-mobile",
2284
+ "value": "?0"
2285
+ }
2286
+ ],
2287
+ "queryString": [],
2288
+ "cookies": [],
2289
+ "headersSize": -1,
2290
+ "bodySize": 158
2291
+ },
2292
+ "response": {
2293
+ "status": 200,
2294
+ "statusText": "",
2295
+ "httpVersion": "h2",
2296
+ "headers": [
2297
+ {
2298
+ "name": "access-control-expose-headers",
2299
+ "value": "x-google-eom,vary,vary,vary,content-encoding,date,server,content-length"
2300
+ },
2301
+ {
2302
+ "name": "content-encoding",
2303
+ "value": "gzip"
2304
+ },
2305
+ {
2306
+ "name": "cross-origin-resource-policy",
2307
+ "value": "cross-origin"
2308
+ },
2309
+ {
2310
+ "name": "x-content-type-options",
2311
+ "value": "nosniff"
2312
+ },
2313
+ {
2314
+ "name": "access-control-allow-origin",
2315
+ "value": "https://example.com"
2316
+ },
2317
+ {
2318
+ "name": "alt-svc",
2319
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
2320
+ },
2321
+ {
2322
+ "name": "content-length",
2323
+ "value": "138"
2324
+ },
2325
+ {
2326
+ "name": "date",
2327
+ "value": "Fri, 09 Jan 2026 03:38:28 GMT"
2328
+ },
2329
+ {
2330
+ "name": "x-xss-protection",
2331
+ "value": "0"
2332
+ },
2333
+ {
2334
+ "name": "content-type",
2335
+ "value": "application/json+protobuf; charset=UTF-8"
2336
+ },
2337
+ {
2338
+ "name": "vary",
2339
+ "value": "Origin, X-Origin, Referer"
2340
+ },
2341
+ {
2342
+ "name": "server",
2343
+ "value": "ESF"
2344
+ },
2345
+ {
2346
+ "name": "x-frame-options",
2347
+ "value": "SAMEORIGIN"
2348
+ }
2349
+ ],
2350
+ "cookies": [],
2351
+ "content": {
2352
+ "size": 0,
2353
+ "mimeType": "application/json+protobuf"
2354
+ },
2355
+ "redirectURL": "",
2356
+ "headersSize": -1,
2357
+ "bodySize": -1
2358
+ },
2359
+ "cache": {},
2360
+ "timings": {
2361
+ "blocked": -1,
2362
+ "dns": -1,
2363
+ "connect": -1,
2364
+ "send": 0,
2365
+ "wait": 0,
2366
+ "receive": 0,
2367
+ "ssl": -1
2368
+ }
2369
+ },
2370
+ {
2371
+ "requestId": "42504.167",
2372
+ "startedDateTime": "1970-01-06T00:02:16.053Z",
2373
+ "time": 276.16999995708466,
2374
+ "request": {
2375
+ "method": "POST",
2376
+ "url": "https://translate-pa.googleapis.com/v1/translateHtml",
2377
+ "httpVersion": "HTTP/1.1",
2378
+ "headers": [
2379
+ {
2380
+ "name": "X-goog-api-key",
2381
+ "value": "AIzaSyATBXajvzQLTDHEQbcpq0Ihe0vWDHmO520"
2382
+ },
2383
+ {
2384
+ "name": "sec-ch-ua-platform",
2385
+ "value": "\"Windows\""
2386
+ },
2387
+ {
2388
+ "name": "Referer",
2389
+ "value": "https://example.com/"
2390
+ },
2391
+ {
2392
+ "name": "User-Agent",
2393
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2394
+ },
2395
+ {
2396
+ "name": "sec-ch-ua",
2397
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
2398
+ },
2399
+ {
2400
+ "name": "Content-Type",
2401
+ "value": "application/json+protobuf"
2402
+ },
2403
+ {
2404
+ "name": "sec-ch-ua-mobile",
2405
+ "value": "?0"
2406
+ }
2407
+ ],
2408
+ "queryString": [],
2409
+ "cookies": [],
2410
+ "headersSize": -1,
2411
+ "bodySize": 158
2412
+ },
2413
+ "response": {
2414
+ "status": 200,
2415
+ "statusText": "",
2416
+ "httpVersion": "h2",
2417
+ "headers": [
2418
+ {
2419
+ "name": "access-control-expose-headers",
2420
+ "value": "x-google-eom,vary,vary,vary,content-encoding,date,server,content-length"
2421
+ },
2422
+ {
2423
+ "name": "content-encoding",
2424
+ "value": "gzip"
2425
+ },
2426
+ {
2427
+ "name": "cross-origin-resource-policy",
2428
+ "value": "cross-origin"
2429
+ },
2430
+ {
2431
+ "name": "x-content-type-options",
2432
+ "value": "nosniff"
2433
+ },
2434
+ {
2435
+ "name": "access-control-allow-origin",
2436
+ "value": "https://example.com"
2437
+ },
2438
+ {
2439
+ "name": "alt-svc",
2440
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
2441
+ },
2442
+ {
2443
+ "name": "content-length",
2444
+ "value": "138"
2445
+ },
2446
+ {
2447
+ "name": "date",
2448
+ "value": "Fri, 09 Jan 2026 03:38:28 GMT"
2449
+ },
2450
+ {
2451
+ "name": "x-xss-protection",
2452
+ "value": "0"
2453
+ },
2454
+ {
2455
+ "name": "content-type",
2456
+ "value": "application/json+protobuf; charset=UTF-8"
2457
+ },
2458
+ {
2459
+ "name": "vary",
2460
+ "value": "Origin, X-Origin, Referer"
2461
+ },
2462
+ {
2463
+ "name": "server",
2464
+ "value": "ESF"
2465
+ },
2466
+ {
2467
+ "name": "x-frame-options",
2468
+ "value": "SAMEORIGIN"
2469
+ }
2470
+ ],
2471
+ "cookies": [],
2472
+ "content": {
2473
+ "size": 0,
2474
+ "mimeType": "application/json+protobuf"
2475
+ },
2476
+ "redirectURL": "",
2477
+ "headersSize": -1,
2478
+ "bodySize": -1
2479
+ },
2480
+ "cache": {},
2481
+ "timings": {
2482
+ "blocked": -1,
2483
+ "dns": -1,
2484
+ "connect": -1,
2485
+ "send": 0,
2486
+ "wait": 0,
2487
+ "receive": 0,
2488
+ "ssl": -1
2489
+ }
2490
+ },
2491
+ {
2492
+ "requestId": "42504.168",
2493
+ "startedDateTime": "1970-01-06T00:02:16.107Z",
2494
+ "time": 43.70700001716614,
2495
+ "request": {
2496
+ "method": "GET",
2497
+ "url": "https://example.com/favicon.ico",
2498
+ "httpVersion": "HTTP/1.1",
2499
+ "headers": [
2500
+ {
2501
+ "name": "sec-ch-ua-platform",
2502
+ "value": "\"Windows\""
2503
+ },
2504
+ {
2505
+ "name": "Referer",
2506
+ "value": "https://example.com/"
2507
+ },
2508
+ {
2509
+ "name": "User-Agent",
2510
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2511
+ },
2512
+ {
2513
+ "name": "sec-ch-ua",
2514
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
2515
+ },
2516
+ {
2517
+ "name": "sec-ch-ua-mobile",
2518
+ "value": "?0"
2519
+ }
2520
+ ],
2521
+ "queryString": [],
2522
+ "cookies": [],
2523
+ "headersSize": -1,
2524
+ "bodySize": 0
2525
+ },
2526
+ "response": {
2527
+ "status": 404,
2528
+ "statusText": "",
2529
+ "httpVersion": "h2",
2530
+ "headers": [
2531
+ {
2532
+ "name": "content-encoding",
2533
+ "value": "gzip"
2534
+ },
2535
+ {
2536
+ "name": "cf-cache-status",
2537
+ "value": "HIT"
2538
+ },
2539
+ {
2540
+ "name": "age",
2541
+ "value": "222"
2542
+ },
2543
+ {
2544
+ "name": "cf-ray",
2545
+ "value": "9bb0e6e82b539115-SDQ"
2546
+ },
2547
+ {
2548
+ "name": "date",
2549
+ "value": "Fri, 09 Jan 2026 03:38:28 GMT"
2550
+ },
2551
+ {
2552
+ "name": "content-type",
2553
+ "value": "text/html"
2554
+ },
2555
+ {
2556
+ "name": "vary",
2557
+ "value": "Accept-Encoding"
2558
+ },
2559
+ {
2560
+ "name": "server",
2561
+ "value": "cloudflare"
2562
+ }
2563
+ ],
2564
+ "cookies": [],
2565
+ "content": {
2566
+ "size": 0,
2567
+ "mimeType": "text/html"
2568
+ },
2569
+ "redirectURL": "",
2570
+ "headersSize": -1,
2571
+ "bodySize": -1
2572
+ },
2573
+ "cache": {},
2574
+ "timings": {
2575
+ "blocked": -1,
2576
+ "dns": -1,
2577
+ "connect": -1,
2578
+ "send": 0,
2579
+ "wait": 0,
2580
+ "receive": 0,
2581
+ "ssl": -1
2582
+ }
2583
+ },
2584
+ {
2585
+ "requestId": "42504.10",
2586
+ "startedDateTime": "1970-01-06T00:02:16.223Z",
2587
+ "time": 2.4739999771118164,
2588
+ "request": {
2589
+ "method": "GET",
2590
+ "url": "chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/fonts/DM-Sans-regular.woff2",
2591
+ "httpVersion": "HTTP/1.1",
2592
+ "headers": [
2593
+ {
2594
+ "name": "User-Agent",
2595
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2596
+ },
2597
+ {
2598
+ "name": "Origin",
2599
+ "value": "https://example.com"
2600
+ },
2601
+ {
2602
+ "name": "Referer",
2603
+ "value": ""
2604
+ }
2605
+ ],
2606
+ "queryString": [],
2607
+ "cookies": [],
2608
+ "headersSize": -1,
2609
+ "bodySize": 0
2610
+ },
2611
+ "response": {
2612
+ "status": 200,
2613
+ "statusText": "OK",
2614
+ "httpVersion": "chrome-extension",
2615
+ "headers": [
2616
+ {
2617
+ "name": "Content-Security-Policy",
2618
+ "value": "script-src 'self' http://localhost:8097/ 'wasm-unsafe-eval'; object-src 'self'"
2619
+ },
2620
+ {
2621
+ "name": "Access-Control-Allow-Origin",
2622
+ "value": "*"
2623
+ },
2624
+ {
2625
+ "name": "cache-control",
2626
+ "value": "no-cache"
2627
+ },
2628
+ {
2629
+ "name": "ETag",
2630
+ "value": "\"MCfTa0IgEo1tcaOdc3oO1fSKPcs=\""
2631
+ },
2632
+ {
2633
+ "name": "Content-Type",
2634
+ "value": "application/octet-stream"
2635
+ },
2636
+ {
2637
+ "name": "Last-Modified",
2638
+ "value": "Wed, 24 Dec 2025 10:45:20 GMT"
2639
+ },
2640
+ {
2641
+ "name": "Cross-Origin-Resource-Policy",
2642
+ "value": "cross-origin"
2643
+ }
2644
+ ],
2645
+ "cookies": [],
2646
+ "content": {
2647
+ "size": 0,
2648
+ "mimeType": "application/octet-stream"
2649
+ },
2650
+ "redirectURL": "",
2651
+ "headersSize": -1,
2652
+ "bodySize": -1
2653
+ },
2654
+ "cache": {},
2655
+ "timings": {
2656
+ "blocked": -1,
2657
+ "dns": -1,
2658
+ "connect": -1,
2659
+ "send": 0,
2660
+ "wait": 0,
2661
+ "receive": 0,
2662
+ "ssl": -1
2663
+ }
2664
+ },
2665
+ {
2666
+ "requestId": "42504.169",
2667
+ "startedDateTime": "1970-01-06T00:02:16.264Z",
2668
+ "time": 5.671000003814697,
2669
+ "request": {
2670
+ "method": "GET",
2671
+ "url": "chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/i18n/es.json",
2672
+ "httpVersion": "HTTP/1.1",
2673
+ "headers": [
2674
+ {
2675
+ "name": "User-Agent",
2676
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2677
+ },
2678
+ {
2679
+ "name": "Referer",
2680
+ "value": ""
2681
+ }
2682
+ ],
2683
+ "queryString": [],
2684
+ "cookies": [],
2685
+ "headersSize": -1,
2686
+ "bodySize": 0
2687
+ },
2688
+ "response": {
2689
+ "status": 200,
2690
+ "statusText": "OK",
2691
+ "httpVersion": "chrome-extension",
2692
+ "headers": [
2693
+ {
2694
+ "name": "Content-Security-Policy",
2695
+ "value": "script-src 'self' http://localhost:8097/ 'wasm-unsafe-eval'; object-src 'self'"
2696
+ },
2697
+ {
2698
+ "name": "Access-Control-Allow-Origin",
2699
+ "value": "*"
2700
+ },
2701
+ {
2702
+ "name": "cache-control",
2703
+ "value": "no-cache"
2704
+ },
2705
+ {
2706
+ "name": "ETag",
2707
+ "value": "\"MCfTa0IgEo1tcaOdc3oO1fSKPcs=\""
2708
+ },
2709
+ {
2710
+ "name": "Content-Type",
2711
+ "value": "application/json"
2712
+ },
2713
+ {
2714
+ "name": "Last-Modified",
2715
+ "value": "Wed, 24 Dec 2025 10:45:20 GMT"
2716
+ },
2717
+ {
2718
+ "name": "Cross-Origin-Resource-Policy",
2719
+ "value": "cross-origin"
2720
+ }
2721
+ ],
2722
+ "cookies": [],
2723
+ "content": {
2724
+ "size": 0,
2725
+ "mimeType": "application/json"
2726
+ },
2727
+ "redirectURL": "",
2728
+ "headersSize": -1,
2729
+ "bodySize": -1
2730
+ },
2731
+ "cache": {},
2732
+ "timings": {
2733
+ "blocked": -1,
2734
+ "dns": -1,
2735
+ "connect": -1,
2736
+ "send": 0,
2737
+ "wait": 0,
2738
+ "receive": 0,
2739
+ "ssl": -1
2740
+ }
2741
+ },
2742
+ {
2743
+ "requestId": "42504.170",
2744
+ "startedDateTime": "1970-01-06T00:02:16.268Z",
2745
+ "time": 4.143999993801117,
2746
+ "request": {
2747
+ "method": "GET",
2748
+ "url": "chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/assets/logo-O35E636P.png",
2749
+ "httpVersion": "HTTP/1.1",
2750
+ "headers": [
2751
+ {
2752
+ "name": "User-Agent",
2753
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2754
+ },
2755
+ {
2756
+ "name": "Referer",
2757
+ "value": ""
2758
+ }
2759
+ ],
2760
+ "queryString": [],
2761
+ "cookies": [],
2762
+ "headersSize": -1,
2763
+ "bodySize": 0
2764
+ },
2765
+ "response": {
2766
+ "status": 200,
2767
+ "statusText": "OK",
2768
+ "httpVersion": "chrome-extension",
2769
+ "headers": [
2770
+ {
2771
+ "name": "Content-Security-Policy",
2772
+ "value": "script-src 'self' http://localhost:8097/ 'wasm-unsafe-eval'; object-src 'self'"
2773
+ },
2774
+ {
2775
+ "name": "Access-Control-Allow-Origin",
2776
+ "value": "*"
2777
+ },
2778
+ {
2779
+ "name": "cache-control",
2780
+ "value": "no-cache"
2781
+ },
2782
+ {
2783
+ "name": "ETag",
2784
+ "value": "\"6EFukkcw9POrg3HEASMFCUprtRI=\""
2785
+ },
2786
+ {
2787
+ "name": "Content-Type",
2788
+ "value": "image/png"
2789
+ },
2790
+ {
2791
+ "name": "Last-Modified",
2792
+ "value": "Wed, 24 Dec 2025 10:45:24 GMT"
2793
+ },
2794
+ {
2795
+ "name": "Cross-Origin-Resource-Policy",
2796
+ "value": "cross-origin"
2797
+ }
2798
+ ],
2799
+ "cookies": [],
2800
+ "content": {
2801
+ "size": 0,
2802
+ "mimeType": "image/png"
2803
+ },
2804
+ "redirectURL": "",
2805
+ "headersSize": -1,
2806
+ "bodySize": -1
2807
+ },
2808
+ "cache": {},
2809
+ "timings": {
2810
+ "blocked": -1,
2811
+ "dns": -1,
2812
+ "connect": -1,
2813
+ "send": 0,
2814
+ "wait": 0,
2815
+ "receive": 0,
2816
+ "ssl": -1
2817
+ }
2818
+ },
2819
+ {
2820
+ "requestId": "42504.171",
2821
+ "startedDateTime": "1970-01-06T00:02:16.348Z",
2822
+ "time": 0,
2823
+ "request": {
2824
+ "method": "GET",
2825
+ "url": "https://translate.google.com/gen204?sl=en&tl=es&textlen=14&ttt=481&ttl=376&ttf=428&sr=1&ef=sda&nca=te_time&client=te_lib&logld=vTE_20251215",
2826
+ "httpVersion": "HTTP/1.1",
2827
+ "headers": [
2828
+ {
2829
+ "name": "sec-ch-ua-platform",
2830
+ "value": "\"Windows\""
2831
+ },
2832
+ {
2833
+ "name": "Referer",
2834
+ "value": "https://example.com/"
2835
+ },
2836
+ {
2837
+ "name": "User-Agent",
2838
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2839
+ },
2840
+ {
2841
+ "name": "sec-ch-ua",
2842
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
2843
+ },
2844
+ {
2845
+ "name": "sec-ch-ua-mobile",
2846
+ "value": "?0"
2847
+ }
2848
+ ],
2849
+ "queryString": [],
2850
+ "cookies": [],
2851
+ "headersSize": -1,
2852
+ "bodySize": 0
2853
+ },
2854
+ "response": {},
2855
+ "cache": {},
2856
+ "timings": {
2857
+ "blocked": -1,
2858
+ "dns": -1,
2859
+ "connect": -1,
2860
+ "send": 0,
2861
+ "wait": 0,
2862
+ "receive": 0,
2863
+ "ssl": -1
2864
+ }
2865
+ },
2866
+ {
2867
+ "requestId": "42504.174",
2868
+ "startedDateTime": "1970-01-06T00:02:16.377Z",
2869
+ "time": 80.7509999871254,
2870
+ "request": {
2871
+ "method": "POST",
2872
+ "url": "https://translate-pa.googleapis.com/v1/translateHtml",
2873
+ "httpVersion": "HTTP/1.1",
2874
+ "headers": [
2875
+ {
2876
+ "name": "X-goog-api-key",
2877
+ "value": "AIzaSyATBXajvzQLTDHEQbcpq0Ihe0vWDHmO520"
2878
+ },
2879
+ {
2880
+ "name": "sec-ch-ua-platform",
2881
+ "value": "\"Windows\""
2882
+ },
2883
+ {
2884
+ "name": "Referer",
2885
+ "value": "https://example.com/"
2886
+ },
2887
+ {
2888
+ "name": "User-Agent",
2889
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
2890
+ },
2891
+ {
2892
+ "name": "sec-ch-ua",
2893
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
2894
+ },
2895
+ {
2896
+ "name": "Content-Type",
2897
+ "value": "application/json+protobuf"
2898
+ },
2899
+ {
2900
+ "name": "sec-ch-ua-mobile",
2901
+ "value": "?0"
2902
+ }
2903
+ ],
2904
+ "queryString": [],
2905
+ "cookies": [],
2906
+ "headersSize": -1,
2907
+ "bodySize": 76
2908
+ },
2909
+ "response": {
2910
+ "status": 200,
2911
+ "statusText": "",
2912
+ "httpVersion": "h3",
2913
+ "headers": [
2914
+ {
2915
+ "name": "access-control-expose-headers",
2916
+ "value": "x-google-eom,vary,vary,vary,content-encoding,date,server,content-length"
2917
+ },
2918
+ {
2919
+ "name": "content-encoding",
2920
+ "value": "gzip"
2921
+ },
2922
+ {
2923
+ "name": "cross-origin-resource-policy",
2924
+ "value": "cross-origin"
2925
+ },
2926
+ {
2927
+ "name": "x-content-type-options",
2928
+ "value": "nosniff"
2929
+ },
2930
+ {
2931
+ "name": "access-control-allow-origin",
2932
+ "value": "https://example.com"
2933
+ },
2934
+ {
2935
+ "name": "alt-svc",
2936
+ "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000"
2937
+ },
2938
+ {
2939
+ "name": "content-length",
2940
+ "value": "74"
2941
+ },
2942
+ {
2943
+ "name": "date",
2944
+ "value": "Fri, 09 Jan 2026 03:38:28 GMT"
2945
+ },
2946
+ {
2947
+ "name": "x-xss-protection",
2948
+ "value": "0"
2949
+ },
2950
+ {
2951
+ "name": "content-type",
2952
+ "value": "application/json+protobuf; charset=UTF-8"
2953
+ },
2954
+ {
2955
+ "name": "vary",
2956
+ "value": "Origin, X-Origin, Referer"
2957
+ },
2958
+ {
2959
+ "name": "server",
2960
+ "value": "ESF"
2961
+ },
2962
+ {
2963
+ "name": "x-frame-options",
2964
+ "value": "SAMEORIGIN"
2965
+ }
2966
+ ],
2967
+ "cookies": [],
2968
+ "content": {
2969
+ "size": 0,
2970
+ "mimeType": "application/json+protobuf"
2971
+ },
2972
+ "redirectURL": "",
2973
+ "headersSize": -1,
2974
+ "bodySize": -1
2975
+ },
2976
+ "cache": {},
2977
+ "timings": {
2978
+ "blocked": -1,
2979
+ "dns": -1,
2980
+ "connect": -1,
2981
+ "send": 0,
2982
+ "wait": 0,
2983
+ "receive": 0,
2984
+ "ssl": -1
2985
+ }
2986
+ },
2987
+ {
2988
+ "requestId": "42504.175",
2989
+ "startedDateTime": "1970-01-06T00:02:17.035Z",
2990
+ "time": 0,
2991
+ "request": {
2992
+ "method": "GET",
2993
+ "url": "https://api.example.com/users",
2994
+ "httpVersion": "HTTP/1.1",
2995
+ "headers": [
2996
+ {
2997
+ "name": "sec-ch-ua-platform",
2998
+ "value": "\"Windows\""
2999
+ },
3000
+ {
3001
+ "name": "Referer",
3002
+ "value": "https://example.com/"
3003
+ },
3004
+ {
3005
+ "name": "User-Agent",
3006
+ "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
3007
+ },
3008
+ {
3009
+ "name": "sec-ch-ua",
3010
+ "value": "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\""
3011
+ },
3012
+ {
3013
+ "name": "sec-ch-ua-mobile",
3014
+ "value": "?0"
3015
+ }
3016
+ ],
3017
+ "queryString": [],
3018
+ "cookies": [],
3019
+ "headersSize": -1,
3020
+ "bodySize": 0
3021
+ },
3022
+ "response": {},
3023
+ "cache": {},
3024
+ "timings": {
3025
+ "blocked": -1,
3026
+ "dns": -1,
3027
+ "connect": -1,
3028
+ "send": 0,
3029
+ "wait": 0,
3030
+ "receive": 0,
3031
+ "ssl": -1
3032
+ }
3033
+ }
3034
+ ]
3035
+ }
3036
+ }