@agentrhq/webcmd 0.4.1 → 0.4.3

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 (74) hide show
  1. package/README.md +3 -0
  2. package/cli-manifest.json +955 -96
  3. package/clis/_shared/site-auth.js +0 -1
  4. package/clis/_shared/site-auth.test.js +0 -1
  5. package/clis/amazon-in/auth.js +44 -0
  6. package/clis/amazon-in/checkout-status.js +54 -0
  7. package/clis/amazon-in/checkout.js +478 -0
  8. package/clis/amazon-in/parsers.js +252 -0
  9. package/clis/amazon-in/parsers.test.js +230 -0
  10. package/clis/amazon-in/product.js +72 -0
  11. package/clis/amazon-in/search.js +76 -0
  12. package/clis/amazon-in/shared.js +40 -0
  13. package/clis/amazon-in/wishlist.js +98 -0
  14. package/clis/blinkit/checkout.js +0 -1
  15. package/clis/blinkit/place-order.js +0 -1
  16. package/clis/chatgpt/model.js +2 -2
  17. package/clis/chatgpt/model.test.js +7 -1
  18. package/clis/chatgpt/utils.js +8 -0
  19. package/clis/chatgpt/utils.test.js +92 -1
  20. package/clis/district/checkout.js +0 -1
  21. package/clis/district/seats.js +0 -1
  22. package/clis/district/set-location.js +0 -1
  23. package/clis/district/showtimes.js +0 -1
  24. package/clis/google/images.js +456 -0
  25. package/clis/google/images.test.js +375 -0
  26. package/clis/instagram/user.js +5 -13
  27. package/clis/instagram/user.test.js +66 -0
  28. package/clis/mercury/check-login.js +0 -1
  29. package/clis/mercury/reimbursement-draft.js +0 -1
  30. package/clis/practo/book-confirm.js +0 -1
  31. package/clis/practo/cancel.js +0 -1
  32. package/clis/trip/attraction.js +74 -0
  33. package/clis/trip/car.js +74 -0
  34. package/clis/trip/deals.js +61 -0
  35. package/clis/trip/flight-round.js +88 -0
  36. package/clis/trip/flight.js +83 -0
  37. package/clis/trip/hotel-search.js +80 -0
  38. package/clis/trip/hotel.js +54 -0
  39. package/clis/trip/package.js +93 -0
  40. package/clis/trip/search.js +43 -0
  41. package/clis/trip/tour.js +84 -0
  42. package/clis/trip/train.js +76 -0
  43. package/clis/trip/transfer.js +82 -0
  44. package/clis/trip/trip.test.js +1420 -0
  45. package/clis/trip/utils.js +911 -0
  46. package/dist/src/build-manifest.js +0 -1
  47. package/dist/src/build-manifest.test.js +4 -0
  48. package/dist/src/cli.js +7 -7
  49. package/dist/src/cli.test.js +26 -10
  50. package/dist/src/command-presentation.js +1 -1
  51. package/dist/src/command-presentation.test.js +3 -0
  52. package/dist/src/command-surface.js +1 -1
  53. package/dist/src/command-surface.test.js +4 -0
  54. package/dist/src/commands/auth.js +0 -2
  55. package/dist/src/commands/auth.test.js +0 -2
  56. package/dist/src/discovery.js +0 -1
  57. package/dist/src/execution.js +3 -3
  58. package/dist/src/execution.test.js +68 -15
  59. package/dist/src/hosted/browser-args.js +2 -2
  60. package/dist/src/hosted/browser-args.test.js +10 -0
  61. package/dist/src/hosted/client.d.ts +8 -10
  62. package/dist/src/hosted/client.js +26 -34
  63. package/dist/src/hosted/client.test.js +79 -24
  64. package/dist/src/hosted/runner.js +7 -35
  65. package/dist/src/hosted/runner.test.js +27 -51
  66. package/dist/src/hosted/types.d.ts +1 -5
  67. package/dist/src/manifest-types.d.ts +0 -2
  68. package/dist/src/registry.d.ts +0 -2
  69. package/dist/src/registry.js +0 -1
  70. package/dist/src/root-command-surface.js +10 -2
  71. package/hosted-contract.json +2627 -1535
  72. package/package.json +2 -2
  73. package/skills/webcmd-browser/SKILL.md +2 -1
  74. package/skills/webcmd-usage/SKILL.md +1 -1
package/cli-manifest.json CHANGED
@@ -92,8 +92,7 @@
92
92
  "modulePath": "amazon/auth.js",
93
93
  "sourceFile": "amazon/auth.js",
94
94
  "navigateBefore": false,
95
- "siteSession": "persistent",
96
- "defaultWindowMode": "foreground"
95
+ "siteSession": "persistent"
97
96
  },
98
97
  {
99
98
  "site": "amazon",
@@ -287,6 +286,282 @@
287
286
  "navigateBefore": false,
288
287
  "siteSession": "persistent"
289
288
  },
289
+ {
290
+ "site": "amazon-in",
291
+ "name": "checkout",
292
+ "description": "Prepare a guarded Amazon.in checkout with browser-only payment handoff",
293
+ "access": "write",
294
+ "domain": "amazon.in",
295
+ "strategy": "ui",
296
+ "browser": true,
297
+ "args": [
298
+ {
299
+ "name": "input",
300
+ "type": "str",
301
+ "required": true,
302
+ "positional": true,
303
+ "help": "Amazon.in product URL or ASIN"
304
+ },
305
+ {
306
+ "name": "quantity",
307
+ "type": "int",
308
+ "default": 1,
309
+ "required": false,
310
+ "help": "Quantity (1-10)"
311
+ },
312
+ {
313
+ "name": "size",
314
+ "type": "str",
315
+ "required": false,
316
+ "help": "Exact visible size label"
317
+ },
318
+ {
319
+ "name": "colour",
320
+ "type": "str",
321
+ "required": false,
322
+ "help": "Exact visible colour label"
323
+ },
324
+ {
325
+ "name": "payment",
326
+ "type": "str",
327
+ "required": true,
328
+ "help": "Payment method; secrets remain browser-only",
329
+ "choices": [
330
+ "upi",
331
+ "saved-card",
332
+ "new-card",
333
+ "cod"
334
+ ]
335
+ },
336
+ {
337
+ "name": "card-last4",
338
+ "type": "str",
339
+ "required": false,
340
+ "help": "Saved-card selector: exactly four digits"
341
+ },
342
+ {
343
+ "name": "place-order",
344
+ "type": "boolean",
345
+ "default": false,
346
+ "required": false,
347
+ "help": "Submit the final Amazon action once"
348
+ }
349
+ ],
350
+ "columns": [
351
+ "status",
352
+ "asin",
353
+ "title",
354
+ "size",
355
+ "colour",
356
+ "quantity",
357
+ "item_price",
358
+ "total",
359
+ "payment_method",
360
+ "delivery_date",
361
+ "action",
362
+ "verify_command"
363
+ ],
364
+ "type": "js",
365
+ "modulePath": "amazon-in/checkout.js",
366
+ "sourceFile": "amazon-in/checkout.js",
367
+ "navigateBefore": false,
368
+ "siteSession": "persistent",
369
+ "freshPage": true
370
+ },
371
+ {
372
+ "site": "amazon-in",
373
+ "name": "checkout-status",
374
+ "description": "Read the current Amazon.in checkout or payment state without clicking",
375
+ "access": "read",
376
+ "domain": "amazon.in",
377
+ "strategy": "ui",
378
+ "browser": true,
379
+ "args": [],
380
+ "columns": [
381
+ "status",
382
+ "order_id",
383
+ "total",
384
+ "payment_method",
385
+ "action"
386
+ ],
387
+ "type": "js",
388
+ "modulePath": "amazon-in/checkout-status.js",
389
+ "sourceFile": "amazon-in/checkout-status.js",
390
+ "navigateBefore": false,
391
+ "siteSession": "persistent"
392
+ },
393
+ {
394
+ "site": "amazon-in",
395
+ "name": "login",
396
+ "description": "Open amazon-in login",
397
+ "access": "write",
398
+ "domain": "amazon.in",
399
+ "strategy": "cookie",
400
+ "browser": true,
401
+ "args": [],
402
+ "columns": [
403
+ "status",
404
+ "logged_in",
405
+ "site",
406
+ "user_name",
407
+ "action",
408
+ "verify_command"
409
+ ],
410
+ "type": "js",
411
+ "modulePath": "amazon-in/auth.js",
412
+ "sourceFile": "amazon-in/auth.js",
413
+ "navigateBefore": false,
414
+ "siteSession": "persistent"
415
+ },
416
+ {
417
+ "site": "amazon-in",
418
+ "name": "product",
419
+ "description": "Fetch the current Amazon.in price and selected product variant",
420
+ "access": "read",
421
+ "domain": "amazon.in",
422
+ "strategy": "ui",
423
+ "browser": true,
424
+ "args": [
425
+ {
426
+ "name": "input",
427
+ "type": "str",
428
+ "required": true,
429
+ "positional": true,
430
+ "help": "Amazon.in product URL or ASIN"
431
+ }
432
+ ],
433
+ "columns": [
434
+ "asin",
435
+ "title",
436
+ "price",
437
+ "mrp",
438
+ "discount",
439
+ "availability",
440
+ "size",
441
+ "colour",
442
+ "image_url",
443
+ "product_url"
444
+ ],
445
+ "type": "js",
446
+ "modulePath": "amazon-in/product.js",
447
+ "sourceFile": "amazon-in/product.js",
448
+ "navigateBefore": false,
449
+ "siteSession": "persistent"
450
+ },
451
+ {
452
+ "site": "amazon-in",
453
+ "name": "search",
454
+ "description": "Search Amazon.in products with inclusive INR price bounds and images",
455
+ "access": "read",
456
+ "domain": "amazon.in",
457
+ "strategy": "ui",
458
+ "browser": true,
459
+ "args": [
460
+ {
461
+ "name": "query",
462
+ "type": "str",
463
+ "required": true,
464
+ "positional": true,
465
+ "help": "Product search query"
466
+ },
467
+ {
468
+ "name": "min-price",
469
+ "type": "number",
470
+ "required": false,
471
+ "help": "Inclusive minimum price in rupees"
472
+ },
473
+ {
474
+ "name": "max-price",
475
+ "type": "number",
476
+ "required": false,
477
+ "help": "Inclusive maximum price in rupees"
478
+ },
479
+ {
480
+ "name": "limit",
481
+ "type": "int",
482
+ "default": 20,
483
+ "required": false,
484
+ "help": "Maximum results (1-50)"
485
+ }
486
+ ],
487
+ "columns": [
488
+ "rank",
489
+ "asin",
490
+ "title",
491
+ "price",
492
+ "mrp",
493
+ "rating",
494
+ "review_count",
495
+ "image_url",
496
+ "product_url",
497
+ "is_sponsored"
498
+ ],
499
+ "type": "js",
500
+ "modulePath": "amazon-in/search.js",
501
+ "sourceFile": "amazon-in/search.js",
502
+ "navigateBefore": false,
503
+ "siteSession": "persistent"
504
+ },
505
+ {
506
+ "site": "amazon-in",
507
+ "name": "whoami",
508
+ "description": "Show the current logged-in amazon-in account",
509
+ "access": "read",
510
+ "domain": "amazon.in",
511
+ "strategy": "cookie",
512
+ "browser": true,
513
+ "args": [],
514
+ "columns": [
515
+ "logged_in",
516
+ "site",
517
+ "user_name"
518
+ ],
519
+ "type": "js",
520
+ "modulePath": "amazon-in/auth.js",
521
+ "sourceFile": "amazon-in/auth.js",
522
+ "navigateBefore": false,
523
+ "siteSession": "persistent"
524
+ },
525
+ {
526
+ "site": "amazon-in",
527
+ "name": "wishlist",
528
+ "description": "Fetch current prices for products in the default Amazon.in wishlist",
529
+ "access": "read",
530
+ "domain": "amazon.in",
531
+ "strategy": "ui",
532
+ "browser": true,
533
+ "args": [
534
+ {
535
+ "name": "filter",
536
+ "type": "str",
537
+ "default": "unpurchased",
538
+ "required": false,
539
+ "help": "Wishlist items to include",
540
+ "choices": [
541
+ "unpurchased",
542
+ "all"
543
+ ]
544
+ }
545
+ ],
546
+ "columns": [
547
+ "list_name",
548
+ "item_id",
549
+ "asin",
550
+ "title",
551
+ "price",
552
+ "mrp",
553
+ "availability",
554
+ "size",
555
+ "colour",
556
+ "image_url",
557
+ "product_url"
558
+ ],
559
+ "type": "js",
560
+ "modulePath": "amazon-in/wishlist.js",
561
+ "sourceFile": "amazon-in/wishlist.js",
562
+ "navigateBefore": false,
563
+ "siteSession": "persistent"
564
+ },
290
565
  {
291
566
  "site": "antigravity",
292
567
  "name": "add-context",
@@ -1604,8 +1879,7 @@
1604
1879
  "modulePath": "band/auth.js",
1605
1880
  "sourceFile": "band/auth.js",
1606
1881
  "navigateBefore": false,
1607
- "siteSession": "persistent",
1608
- "defaultWindowMode": "foreground"
1882
+ "siteSession": "persistent"
1609
1883
  },
1610
1884
  {
1611
1885
  "site": "band",
@@ -2679,8 +2953,7 @@
2679
2953
  "type": "js",
2680
2954
  "modulePath": "blinkit/checkout.js",
2681
2955
  "sourceFile": "blinkit/checkout.js",
2682
- "navigateBefore": false,
2683
- "defaultWindowMode": "foreground"
2956
+ "navigateBefore": false
2684
2957
  },
2685
2958
  {
2686
2959
  "site": "blinkit",
@@ -2727,8 +3000,7 @@
2727
3000
  "modulePath": "blinkit/auth.js",
2728
3001
  "sourceFile": "blinkit/auth.js",
2729
3002
  "navigateBefore": false,
2730
- "siteSession": "persistent",
2731
- "defaultWindowMode": "foreground"
3003
+ "siteSession": "persistent"
2732
3004
  },
2733
3005
  {
2734
3006
  "site": "blinkit",
@@ -2759,8 +3031,7 @@
2759
3031
  "type": "js",
2760
3032
  "modulePath": "blinkit/place-order.js",
2761
3033
  "sourceFile": "blinkit/place-order.js",
2762
- "navigateBefore": false,
2763
- "defaultWindowMode": "foreground"
3034
+ "navigateBefore": false
2764
3035
  },
2765
3036
  {
2766
3037
  "site": "blinkit",
@@ -3986,13 +4257,12 @@
3986
4257
  "modulePath": "chatgpt/auth.js",
3987
4258
  "sourceFile": "chatgpt/auth.js",
3988
4259
  "navigateBefore": false,
3989
- "siteSession": "persistent",
3990
- "defaultWindowMode": "foreground"
4260
+ "siteSession": "persistent"
3991
4261
  },
3992
4262
  {
3993
4263
  "site": "chatgpt",
3994
4264
  "name": "model",
3995
- "description": "Switch ChatGPT web intelligence level (fast, balanced, advanced, very-high, pro)",
4265
+ "description": "Switch ChatGPT web model or intelligence level (GPT-5.6 Pro, fast, balanced, advanced, very-high, pro)",
3996
4266
  "access": "write",
3997
4267
  "domain": "chatgpt.com",
3998
4268
  "strategy": "cookie",
@@ -4003,7 +4273,7 @@
4003
4273
  "type": "str",
4004
4274
  "required": true,
4005
4275
  "positional": true,
4006
- "help": "Intelligence level to switch to",
4276
+ "help": "ChatGPT model or intelligence level to switch to",
4007
4277
  "choices": [
4008
4278
  "fast",
4009
4279
  "speed",
@@ -4020,6 +4290,14 @@
4020
4290
  "x-high",
4021
4291
  "extra-high",
4022
4292
  "very high",
4293
+ "gpt-5.6-pro",
4294
+ "gpt-5-6-pro",
4295
+ "gpt-5.6-sol-pro",
4296
+ "gpt-5-6-sol-pro",
4297
+ "gpt-5.6",
4298
+ "gpt-5-6",
4299
+ "5.6-pro",
4300
+ "5.6",
4023
4301
  "pro",
4024
4302
  "professional"
4025
4303
  ]
@@ -4948,8 +5226,7 @@
4948
5226
  "modulePath": "claude/auth.js",
4949
5227
  "sourceFile": "claude/auth.js",
4950
5228
  "navigateBefore": false,
4951
- "siteSession": "persistent",
4952
- "defaultWindowMode": "foreground"
5229
+ "siteSession": "persistent"
4953
5230
  },
4954
5231
  {
4955
5232
  "site": "claude",
@@ -6154,8 +6431,7 @@
6154
6431
  "modulePath": "coupang/auth.js",
6155
6432
  "sourceFile": "coupang/auth.js",
6156
6433
  "navigateBefore": false,
6157
- "siteSession": "persistent",
6158
- "defaultWindowMode": "foreground"
6434
+ "siteSession": "persistent"
6159
6435
  },
6160
6436
  {
6161
6437
  "site": "coupang",
@@ -7533,8 +7809,7 @@
7533
7809
  "sourceFile": "district/checkout.js",
7534
7810
  "navigateBefore": false,
7535
7811
  "siteSession": "persistent",
7536
- "freshPage": true,
7537
- "defaultWindowMode": "foreground"
7812
+ "freshPage": true
7538
7813
  },
7539
7814
  {
7540
7815
  "site": "district",
@@ -7646,8 +7921,7 @@
7646
7921
  "modulePath": "district/auth.js",
7647
7922
  "sourceFile": "district/auth.js",
7648
7923
  "navigateBefore": false,
7649
- "siteSession": "persistent",
7650
- "defaultWindowMode": "foreground"
7924
+ "siteSession": "persistent"
7651
7925
  },
7652
7926
  {
7653
7927
  "site": "district",
@@ -7781,8 +8055,7 @@
7781
8055
  "modulePath": "district/seats.js",
7782
8056
  "sourceFile": "district/seats.js",
7783
8057
  "navigateBefore": false,
7784
- "siteSession": "persistent",
7785
- "defaultWindowMode": "foreground"
8058
+ "siteSession": "persistent"
7786
8059
  },
7787
8060
  {
7788
8061
  "site": "district",
@@ -7836,8 +8109,7 @@
7836
8109
  "modulePath": "district/set-location.js",
7837
8110
  "sourceFile": "district/set-location.js",
7838
8111
  "navigateBefore": false,
7839
- "siteSession": "persistent",
7840
- "defaultWindowMode": "foreground"
8112
+ "siteSession": "persistent"
7841
8113
  },
7842
8114
  {
7843
8115
  "site": "district",
@@ -7944,8 +8216,7 @@
7944
8216
  "modulePath": "district/showtimes.js",
7945
8217
  "sourceFile": "district/showtimes.js",
7946
8218
  "navigateBefore": false,
7947
- "siteSession": "persistent",
7948
- "defaultWindowMode": "foreground"
8219
+ "siteSession": "persistent"
7949
8220
  },
7950
8221
  {
7951
8222
  "site": "district",
@@ -8347,8 +8618,7 @@
8347
8618
  "modulePath": "facebook/auth.js",
8348
8619
  "sourceFile": "facebook/auth.js",
8349
8620
  "navigateBefore": false,
8350
- "siteSession": "persistent",
8351
- "defaultWindowMode": "foreground"
8621
+ "siteSession": "persistent"
8352
8622
  },
8353
8623
  {
8354
8624
  "site": "facebook",
@@ -8923,8 +9193,7 @@
8923
9193
  "modulePath": "gemini/auth.js",
8924
9194
  "sourceFile": "gemini/auth.js",
8925
9195
  "navigateBefore": false,
8926
- "siteSession": "persistent",
8927
- "defaultWindowMode": "foreground"
9196
+ "siteSession": "persistent"
8928
9197
  },
8929
9198
  {
8930
9199
  "site": "gemini",
@@ -9319,8 +9588,7 @@
9319
9588
  "modulePath": "github/auth.js",
9320
9589
  "sourceFile": "github/auth.js",
9321
9590
  "navigateBefore": false,
9322
- "siteSession": "persistent",
9323
- "defaultWindowMode": "foreground"
9591
+ "siteSession": "persistent"
9324
9592
  },
9325
9593
  {
9326
9594
  "site": "github",
@@ -9392,25 +9660,26 @@
9392
9660
  },
9393
9661
  {
9394
9662
  "site": "google",
9395
- "name": "news",
9396
- "description": "Get Google News headlines",
9663
+ "name": "images",
9664
+ "description": "Search Google Images for photos and image results",
9397
9665
  "access": "read",
9666
+ "domain": "google.com",
9398
9667
  "strategy": "public",
9399
- "browser": false,
9668
+ "browser": true,
9400
9669
  "args": [
9401
9670
  {
9402
9671
  "name": "keyword",
9403
9672
  "type": "str",
9404
- "required": false,
9673
+ "required": true,
9405
9674
  "positional": true,
9406
- "help": "Search query (omit for top stories)"
9675
+ "help": "Image search query"
9407
9676
  },
9408
9677
  {
9409
9678
  "name": "limit",
9410
9679
  "type": "int",
9411
- "default": 10,
9680
+ "default": 20,
9412
9681
  "required": false,
9413
- "help": "Number of results"
9682
+ "help": "Number of image results (1-100)"
9414
9683
  },
9415
9684
  {
9416
9685
  "name": "lang",
@@ -9420,28 +9689,80 @@
9420
9689
  "help": "Language short code (e.g. en, zh)"
9421
9690
  },
9422
9691
  {
9423
- "name": "region",
9424
- "type": "str",
9425
- "default": "US",
9692
+ "name": "resolve",
9693
+ "type": "bool",
9694
+ "default": true,
9426
9695
  "required": false,
9427
- "help": "Region code (e.g. US, CN)"
9696
+ "help": "Click image previews to resolve original imgurl values"
9428
9697
  }
9429
9698
  ],
9430
9699
  "columns": [
9700
+ "rank",
9431
9701
  "title",
9702
+ "imageUrl",
9703
+ "thumbnailUrl",
9704
+ "sourceUrl",
9432
9705
  "source",
9433
- "date",
9434
- "url"
9706
+ "width",
9707
+ "height"
9435
9708
  ],
9436
9709
  "type": "js",
9437
- "modulePath": "google/news.js",
9438
- "sourceFile": "google/news.js"
9710
+ "modulePath": "google/images.js",
9711
+ "sourceFile": "google/images.js",
9712
+ "navigateBefore": false
9439
9713
  },
9440
9714
  {
9441
9715
  "site": "google",
9442
- "name": "search",
9443
- "description": "Search Google",
9444
- "access": "read",
9716
+ "name": "news",
9717
+ "description": "Get Google News headlines",
9718
+ "access": "read",
9719
+ "strategy": "public",
9720
+ "browser": false,
9721
+ "args": [
9722
+ {
9723
+ "name": "keyword",
9724
+ "type": "str",
9725
+ "required": false,
9726
+ "positional": true,
9727
+ "help": "Search query (omit for top stories)"
9728
+ },
9729
+ {
9730
+ "name": "limit",
9731
+ "type": "int",
9732
+ "default": 10,
9733
+ "required": false,
9734
+ "help": "Number of results"
9735
+ },
9736
+ {
9737
+ "name": "lang",
9738
+ "type": "str",
9739
+ "default": "en",
9740
+ "required": false,
9741
+ "help": "Language short code (e.g. en, zh)"
9742
+ },
9743
+ {
9744
+ "name": "region",
9745
+ "type": "str",
9746
+ "default": "US",
9747
+ "required": false,
9748
+ "help": "Region code (e.g. US, CN)"
9749
+ }
9750
+ ],
9751
+ "columns": [
9752
+ "title",
9753
+ "source",
9754
+ "date",
9755
+ "url"
9756
+ ],
9757
+ "type": "js",
9758
+ "modulePath": "google/news.js",
9759
+ "sourceFile": "google/news.js"
9760
+ },
9761
+ {
9762
+ "site": "google",
9763
+ "name": "search",
9764
+ "description": "Search Google",
9765
+ "access": "read",
9445
9766
  "domain": "google.com",
9446
9767
  "strategy": "public",
9447
9768
  "browser": true,
@@ -10068,8 +10389,7 @@
10068
10389
  "modulePath": "grok/auth.js",
10069
10390
  "sourceFile": "grok/auth.js",
10070
10391
  "navigateBefore": false,
10071
- "siteSession": "persistent",
10072
- "defaultWindowMode": "foreground"
10392
+ "siteSession": "persistent"
10073
10393
  },
10074
10394
  {
10075
10395
  "site": "grok",
@@ -10622,8 +10942,7 @@
10622
10942
  "modulePath": "hf/auth.js",
10623
10943
  "sourceFile": "hf/auth.js",
10624
10944
  "navigateBefore": false,
10625
- "siteSession": "persistent",
10626
- "defaultWindowMode": "foreground"
10945
+ "siteSession": "persistent"
10627
10946
  },
10628
10947
  {
10629
10948
  "site": "hf",
@@ -11543,8 +11862,7 @@
11543
11862
  "modulePath": "instagram/auth.js",
11544
11863
  "sourceFile": "instagram/auth.js",
11545
11864
  "navigateBefore": false,
11546
- "siteSession": "persistent",
11547
- "defaultWindowMode": "foreground"
11865
+ "siteSession": "persistent"
11548
11866
  },
11549
11867
  {
11550
11868
  "site": "instagram",
@@ -12942,8 +13260,7 @@
12942
13260
  "modulePath": "linkedin/auth.js",
12943
13261
  "sourceFile": "linkedin/auth.js",
12944
13262
  "navigateBefore": false,
12945
- "siteSession": "persistent",
12946
- "defaultWindowMode": "foreground"
13263
+ "siteSession": "persistent"
12947
13264
  },
12948
13265
  {
12949
13266
  "site": "linkedin",
@@ -13778,8 +14095,7 @@
13778
14095
  "modulePath": "linkedin-learning/auth.js",
13779
14096
  "sourceFile": "linkedin-learning/auth.js",
13780
14097
  "navigateBefore": false,
13781
- "siteSession": "persistent",
13782
- "defaultWindowMode": "foreground"
14098
+ "siteSession": "persistent"
13783
14099
  },
13784
14100
  {
13785
14101
  "site": "linkedin-learning",
@@ -14212,8 +14528,7 @@
14212
14528
  "modulePath": "manus/auth.js",
14213
14529
  "sourceFile": "manus/auth.js",
14214
14530
  "navigateBefore": false,
14215
- "siteSession": "persistent",
14216
- "defaultWindowMode": "foreground"
14531
+ "siteSession": "persistent"
14217
14532
  },
14218
14533
  {
14219
14534
  "site": "manus",
@@ -14594,8 +14909,7 @@
14594
14909
  "modulePath": "mercury/check-login.js",
14595
14910
  "sourceFile": "mercury/check-login.js",
14596
14911
  "navigateBefore": false,
14597
- "siteSession": "persistent",
14598
- "defaultWindowMode": "foreground"
14912
+ "siteSession": "persistent"
14599
14913
  },
14600
14914
  {
14601
14915
  "site": "mercury",
@@ -14693,8 +15007,7 @@
14693
15007
  "modulePath": "mercury/reimbursement-draft.js",
14694
15008
  "sourceFile": "mercury/reimbursement-draft.js",
14695
15009
  "navigateBefore": false,
14696
- "siteSession": "persistent",
14697
- "defaultWindowMode": "foreground"
15010
+ "siteSession": "persistent"
14698
15011
  },
14699
15012
  {
14700
15013
  "site": "mercury",
@@ -15079,8 +15392,7 @@
15079
15392
  "modulePath": "notebooklm/auth.js",
15080
15393
  "sourceFile": "notebooklm/auth.js",
15081
15394
  "navigateBefore": false,
15082
- "siteSession": "persistent",
15083
- "defaultWindowMode": "foreground"
15395
+ "siteSession": "persistent"
15084
15396
  },
15085
15397
  {
15086
15398
  "site": "notebooklm",
@@ -16514,8 +16826,7 @@
16514
16826
  "modulePath": "pixiv/auth.js",
16515
16827
  "sourceFile": "pixiv/auth.js",
16516
16828
  "navigateBefore": false,
16517
- "siteSession": "persistent",
16518
- "defaultWindowMode": "foreground"
16829
+ "siteSession": "persistent"
16519
16830
  },
16520
16831
  {
16521
16832
  "site": "pixiv",
@@ -16797,8 +17108,7 @@
16797
17108
  "modulePath": "practo/book-confirm.js",
16798
17109
  "sourceFile": "practo/book-confirm.js",
16799
17110
  "navigateBefore": false,
16800
- "siteSession": "persistent",
16801
- "defaultWindowMode": "foreground"
17111
+ "siteSession": "persistent"
16802
17112
  },
16803
17113
  {
16804
17114
  "site": "practo",
@@ -16916,8 +17226,7 @@
16916
17226
  "modulePath": "practo/cancel.js",
16917
17227
  "sourceFile": "practo/cancel.js",
16918
17228
  "navigateBefore": false,
16919
- "siteSession": "persistent",
16920
- "defaultWindowMode": "foreground"
17229
+ "siteSession": "persistent"
16921
17230
  },
16922
17231
  {
16923
17232
  "site": "practo",
@@ -16967,8 +17276,7 @@
16967
17276
  "modulePath": "practo/login.js",
16968
17277
  "sourceFile": "practo/login.js",
16969
17278
  "navigateBefore": false,
16970
- "siteSession": "persistent",
16971
- "defaultWindowMode": "foreground"
17279
+ "siteSession": "persistent"
16972
17280
  },
16973
17281
  {
16974
17282
  "site": "practo",
@@ -18473,8 +18781,7 @@
18473
18781
  "modulePath": "reddit/auth.js",
18474
18782
  "sourceFile": "reddit/auth.js",
18475
18783
  "navigateBefore": false,
18476
- "siteSession": "persistent",
18477
- "defaultWindowMode": "foreground"
18784
+ "siteSession": "persistent"
18478
18785
  },
18479
18786
  {
18480
18787
  "site": "reddit",
@@ -19236,8 +19543,7 @@
19236
19543
  "modulePath": "reuters/auth.js",
19237
19544
  "sourceFile": "reuters/auth.js",
19238
19545
  "navigateBefore": false,
19239
- "siteSession": "persistent",
19240
- "defaultWindowMode": "foreground"
19546
+ "siteSession": "persistent"
19241
19547
  },
19242
19548
  {
19243
19549
  "site": "reuters",
@@ -20325,8 +20631,7 @@
20325
20631
  "modulePath": "slock/whoami.js",
20326
20632
  "sourceFile": "slock/whoami.js",
20327
20633
  "navigateBefore": false,
20328
- "siteSession": "persistent",
20329
- "defaultWindowMode": "foreground"
20634
+ "siteSession": "persistent"
20330
20635
  },
20331
20636
  {
20332
20637
  "site": "slock",
@@ -22238,8 +22543,7 @@
22238
22543
  "modulePath": "suno/auth.js",
22239
22544
  "sourceFile": "suno/auth.js",
22240
22545
  "navigateBefore": false,
22241
- "siteSession": "persistent",
22242
- "defaultWindowMode": "foreground"
22546
+ "siteSession": "persistent"
22243
22547
  },
22244
22548
  {
22245
22549
  "site": "suno",
@@ -22567,8 +22871,7 @@
22567
22871
  "modulePath": "tiktok/auth.js",
22568
22872
  "sourceFile": "tiktok/auth.js",
22569
22873
  "navigateBefore": false,
22570
- "siteSession": "persistent",
22571
- "defaultWindowMode": "foreground"
22874
+ "siteSession": "persistent"
22572
22875
  },
22573
22876
  {
22574
22877
  "site": "tiktok",
@@ -23613,6 +23916,566 @@
23613
23916
  "modulePath": "trae-solo/workspaces-fs.js",
23614
23917
  "sourceFile": "trae-solo/workspaces-fs.js"
23615
23918
  },
23919
+ {
23920
+ "site": "trip",
23921
+ "name": "attraction",
23922
+ "description": "Search Trip.com attractions and experiences by destination keyword",
23923
+ "access": "read",
23924
+ "domain": "trip.com",
23925
+ "strategy": "cookie",
23926
+ "browser": true,
23927
+ "args": [
23928
+ {
23929
+ "name": "query",
23930
+ "type": "str",
23931
+ "required": true,
23932
+ "positional": true,
23933
+ "help": "Destination or attraction keyword (e.g. Tokyo / Paris / Louvre)"
23934
+ },
23935
+ {
23936
+ "name": "limit",
23937
+ "type": "int",
23938
+ "default": 20,
23939
+ "required": false,
23940
+ "help": "Number of results (1-50)"
23941
+ }
23942
+ ],
23943
+ "columns": [
23944
+ "rank",
23945
+ "name",
23946
+ "rating",
23947
+ "reviews",
23948
+ "booked",
23949
+ "price",
23950
+ "currency",
23951
+ "url"
23952
+ ],
23953
+ "type": "js",
23954
+ "modulePath": "trip/attraction.js",
23955
+ "sourceFile": "trip/attraction.js",
23956
+ "navigateBefore": false
23957
+ },
23958
+ {
23959
+ "site": "trip",
23960
+ "name": "car",
23961
+ "description": "List Trip.com car-rental vehicles for a city (category, model, seats, daily price)",
23962
+ "access": "read",
23963
+ "domain": "trip.com",
23964
+ "strategy": "cookie",
23965
+ "browser": true,
23966
+ "args": [
23967
+ {
23968
+ "name": "city",
23969
+ "type": "str",
23970
+ "required": true,
23971
+ "positional": true,
23972
+ "help": "Numeric Trip.com carhire city id (discover via the carhire search box)"
23973
+ },
23974
+ {
23975
+ "name": "limit",
23976
+ "type": "int",
23977
+ "default": 20,
23978
+ "required": false,
23979
+ "help": "Number of vehicles (1-50)"
23980
+ }
23981
+ ],
23982
+ "columns": [
23983
+ "rank",
23984
+ "category",
23985
+ "vehicle",
23986
+ "seats",
23987
+ "price",
23988
+ "currency",
23989
+ "url"
23990
+ ],
23991
+ "type": "js",
23992
+ "modulePath": "trip/car.js",
23993
+ "sourceFile": "trip/car.js",
23994
+ "navigateBefore": false
23995
+ },
23996
+ {
23997
+ "site": "trip",
23998
+ "name": "deals",
23999
+ "description": "List Trip.com live promotions from the Top Deals hub: campaign title, offer, discount, and link",
24000
+ "access": "read",
24001
+ "domain": "trip.com",
24002
+ "strategy": "cookie",
24003
+ "browser": true,
24004
+ "args": [
24005
+ {
24006
+ "name": "limit",
24007
+ "type": "int",
24008
+ "default": 20,
24009
+ "required": false,
24010
+ "help": "Number of deals (1-50)"
24011
+ }
24012
+ ],
24013
+ "columns": [
24014
+ "rank",
24015
+ "title",
24016
+ "offer",
24017
+ "discount",
24018
+ "url"
24019
+ ],
24020
+ "type": "js",
24021
+ "modulePath": "trip/deals.js",
24022
+ "sourceFile": "trip/deals.js",
24023
+ "navigateBefore": false
24024
+ },
24025
+ {
24026
+ "site": "trip",
24027
+ "name": "flight",
24028
+ "description": "Search Trip.com one-way flights by IATA route + departure date",
24029
+ "access": "read",
24030
+ "domain": "trip.com",
24031
+ "strategy": "cookie",
24032
+ "browser": true,
24033
+ "args": [
24034
+ {
24035
+ "name": "from",
24036
+ "type": "str",
24037
+ "required": true,
24038
+ "positional": true,
24039
+ "help": "Departure IATA code (e.g. LON / LHR)"
24040
+ },
24041
+ {
24042
+ "name": "to",
24043
+ "type": "str",
24044
+ "required": true,
24045
+ "positional": true,
24046
+ "help": "Arrival IATA code (e.g. NYC / JFK)"
24047
+ },
24048
+ {
24049
+ "name": "date",
24050
+ "type": "str",
24051
+ "required": true,
24052
+ "help": "Departure date (YYYY-MM-DD)"
24053
+ },
24054
+ {
24055
+ "name": "limit",
24056
+ "type": "int",
24057
+ "default": 20,
24058
+ "required": false,
24059
+ "help": "Number of flights (1-50)"
24060
+ }
24061
+ ],
24062
+ "columns": [
24063
+ "rank",
24064
+ "airline",
24065
+ "departureTime",
24066
+ "departureAirport",
24067
+ "arrivalTime",
24068
+ "arrivalAirport",
24069
+ "duration",
24070
+ "stops",
24071
+ "price",
24072
+ "currency",
24073
+ "url"
24074
+ ],
24075
+ "type": "js",
24076
+ "modulePath": "trip/flight.js",
24077
+ "sourceFile": "trip/flight.js",
24078
+ "navigateBefore": false
24079
+ },
24080
+ {
24081
+ "site": "trip",
24082
+ "name": "flight-round",
24083
+ "description": "Search Trip.com round-trip flights by IATA route + depart/return dates",
24084
+ "access": "read",
24085
+ "domain": "trip.com",
24086
+ "strategy": "cookie",
24087
+ "browser": true,
24088
+ "args": [
24089
+ {
24090
+ "name": "from",
24091
+ "type": "str",
24092
+ "required": true,
24093
+ "positional": true,
24094
+ "help": "Departure IATA code (e.g. LON / LHR)"
24095
+ },
24096
+ {
24097
+ "name": "to",
24098
+ "type": "str",
24099
+ "required": true,
24100
+ "positional": true,
24101
+ "help": "Arrival IATA code (e.g. NYC / JFK)"
24102
+ },
24103
+ {
24104
+ "name": "depart",
24105
+ "type": "str",
24106
+ "required": true,
24107
+ "help": "Outbound date (YYYY-MM-DD)"
24108
+ },
24109
+ {
24110
+ "name": "return",
24111
+ "type": "str",
24112
+ "required": true,
24113
+ "help": "Return date (YYYY-MM-DD)"
24114
+ },
24115
+ {
24116
+ "name": "limit",
24117
+ "type": "int",
24118
+ "default": 20,
24119
+ "required": false,
24120
+ "help": "Number of flights (1-50)"
24121
+ }
24122
+ ],
24123
+ "columns": [
24124
+ "rank",
24125
+ "airline",
24126
+ "departureTime",
24127
+ "departureAirport",
24128
+ "arrivalTime",
24129
+ "arrivalAirport",
24130
+ "duration",
24131
+ "stops",
24132
+ "price",
24133
+ "currency",
24134
+ "url"
24135
+ ],
24136
+ "type": "js",
24137
+ "modulePath": "trip/flight-round.js",
24138
+ "sourceFile": "trip/flight-round.js",
24139
+ "navigateBefore": false
24140
+ },
24141
+ {
24142
+ "site": "trip",
24143
+ "name": "hotel",
24144
+ "description": "Show a Trip.com hotel detail by id (rating breakdown, amenities, check-in/out policy)",
24145
+ "access": "read",
24146
+ "domain": "trip.com",
24147
+ "strategy": "cookie",
24148
+ "browser": true,
24149
+ "args": [
24150
+ {
24151
+ "name": "id",
24152
+ "type": "str",
24153
+ "required": true,
24154
+ "positional": true,
24155
+ "help": "Numeric Trip.com hotel id (discover via the hotels list; e.g. 715233)"
24156
+ }
24157
+ ],
24158
+ "columns": [
24159
+ "hotelId",
24160
+ "name",
24161
+ "enName",
24162
+ "star",
24163
+ "score",
24164
+ "scoreLabel",
24165
+ "reviewCount",
24166
+ "ratingBreakdown",
24167
+ "facilities",
24168
+ "checkInOut",
24169
+ "cityName",
24170
+ "address",
24171
+ "lat",
24172
+ "lon",
24173
+ "url"
24174
+ ],
24175
+ "type": "js",
24176
+ "modulePath": "trip/hotel.js",
24177
+ "sourceFile": "trip/hotel.js",
24178
+ "navigateBefore": false
24179
+ },
24180
+ {
24181
+ "site": "trip",
24182
+ "name": "hotel-search",
24183
+ "description": "List Trip.com hotels for a city id + check-in/out date range",
24184
+ "access": "read",
24185
+ "domain": "trip.com",
24186
+ "strategy": "cookie",
24187
+ "browser": true,
24188
+ "args": [
24189
+ {
24190
+ "name": "city",
24191
+ "type": "str",
24192
+ "required": true,
24193
+ "positional": true,
24194
+ "help": "Numeric Trip.com city id (discover via the hotels search box; e.g. 338 for London)"
24195
+ },
24196
+ {
24197
+ "name": "checkin",
24198
+ "type": "str",
24199
+ "required": true,
24200
+ "help": "Check-in date (YYYY-MM-DD)"
24201
+ },
24202
+ {
24203
+ "name": "checkout",
24204
+ "type": "str",
24205
+ "required": true,
24206
+ "help": "Check-out date (YYYY-MM-DD)"
24207
+ },
24208
+ {
24209
+ "name": "limit",
24210
+ "type": "int",
24211
+ "default": 20,
24212
+ "required": false,
24213
+ "help": "Number of hotels (1-50)"
24214
+ }
24215
+ ],
24216
+ "columns": [
24217
+ "rank",
24218
+ "name",
24219
+ "score",
24220
+ "reviewLabel",
24221
+ "reviews",
24222
+ "location",
24223
+ "room",
24224
+ "price",
24225
+ "currency",
24226
+ "url"
24227
+ ],
24228
+ "type": "js",
24229
+ "modulePath": "trip/hotel-search.js",
24230
+ "sourceFile": "trip/hotel-search.js",
24231
+ "navigateBefore": false
24232
+ },
24233
+ {
24234
+ "site": "trip",
24235
+ "name": "package",
24236
+ "description": "Search Trip.com flight+hotel packages by route + dates; lists the package flight options priced at the bundle rate",
24237
+ "access": "read",
24238
+ "domain": "trip.com",
24239
+ "strategy": "public",
24240
+ "browser": false,
24241
+ "args": [
24242
+ {
24243
+ "name": "from",
24244
+ "type": "str",
24245
+ "required": true,
24246
+ "positional": true,
24247
+ "help": "Origin city keyword (e.g. Seoul / London / Bangkok)"
24248
+ },
24249
+ {
24250
+ "name": "to",
24251
+ "type": "str",
24252
+ "required": true,
24253
+ "positional": true,
24254
+ "help": "Destination city keyword (e.g. Tokyo / Paris / Singapore)"
24255
+ },
24256
+ {
24257
+ "name": "depart",
24258
+ "type": "str",
24259
+ "required": true,
24260
+ "help": "Outbound date (YYYY-MM-DD)"
24261
+ },
24262
+ {
24263
+ "name": "return",
24264
+ "type": "str",
24265
+ "required": true,
24266
+ "help": "Return date (YYYY-MM-DD)"
24267
+ },
24268
+ {
24269
+ "name": "adults",
24270
+ "type": "int",
24271
+ "default": 2,
24272
+ "required": false,
24273
+ "help": "Number of adults (1-9, default 2)"
24274
+ },
24275
+ {
24276
+ "name": "limit",
24277
+ "type": "int",
24278
+ "default": 20,
24279
+ "required": false,
24280
+ "help": "Number of packages (1-50)"
24281
+ }
24282
+ ],
24283
+ "columns": [
24284
+ "rank",
24285
+ "airline",
24286
+ "flightNo",
24287
+ "from",
24288
+ "to",
24289
+ "departure",
24290
+ "arrival",
24291
+ "stops",
24292
+ "price",
24293
+ "currency"
24294
+ ],
24295
+ "type": "js",
24296
+ "modulePath": "trip/package.js",
24297
+ "sourceFile": "trip/package.js"
24298
+ },
24299
+ {
24300
+ "site": "trip",
24301
+ "name": "search",
24302
+ "description": "Suggest Trip.com destinations (cities, airports) for a keyword; resolves the ids the other commands take",
24303
+ "access": "read",
24304
+ "domain": "trip.com",
24305
+ "strategy": "public",
24306
+ "browser": false,
24307
+ "args": [
24308
+ {
24309
+ "name": "query",
24310
+ "type": "str",
24311
+ "required": true,
24312
+ "positional": true,
24313
+ "help": "Destination keyword (e.g. Tokyo / Bali / London)"
24314
+ },
24315
+ {
24316
+ "name": "limit",
24317
+ "type": "int",
24318
+ "default": 20,
24319
+ "required": false,
24320
+ "help": "Number of suggestions (1-50)"
24321
+ }
24322
+ ],
24323
+ "columns": [
24324
+ "rank",
24325
+ "name",
24326
+ "type",
24327
+ "cityId",
24328
+ "airportCode",
24329
+ "province",
24330
+ "country"
24331
+ ],
24332
+ "type": "js",
24333
+ "modulePath": "trip/search.js",
24334
+ "sourceFile": "trip/search.js"
24335
+ },
24336
+ {
24337
+ "site": "trip",
24338
+ "name": "tour",
24339
+ "description": "Search Trip.com tour packages by destination keyword (private or group tours)",
24340
+ "access": "read",
24341
+ "domain": "trip.com",
24342
+ "strategy": "cookie",
24343
+ "browser": true,
24344
+ "args": [
24345
+ {
24346
+ "name": "query",
24347
+ "type": "str",
24348
+ "required": true,
24349
+ "positional": true,
24350
+ "help": "Destination or tour keyword (e.g. Tokyo / Kyoto / Bali)"
24351
+ },
24352
+ {
24353
+ "name": "type",
24354
+ "type": "str",
24355
+ "default": "private",
24356
+ "required": false,
24357
+ "help": "Tour line: private or group (default private)"
24358
+ },
24359
+ {
24360
+ "name": "limit",
24361
+ "type": "int",
24362
+ "default": 20,
24363
+ "required": false,
24364
+ "help": "Number of tours (1-50)"
24365
+ }
24366
+ ],
24367
+ "columns": [
24368
+ "rank",
24369
+ "name",
24370
+ "type",
24371
+ "rating",
24372
+ "reviews",
24373
+ "price",
24374
+ "currency",
24375
+ "url"
24376
+ ],
24377
+ "type": "js",
24378
+ "modulePath": "trip/tour.js",
24379
+ "sourceFile": "trip/tour.js",
24380
+ "navigateBefore": false
24381
+ },
24382
+ {
24383
+ "site": "trip",
24384
+ "name": "train",
24385
+ "description": "Show a Trip.com train route timetable (departure/arrival times, duration, changes)",
24386
+ "access": "read",
24387
+ "domain": "trip.com",
24388
+ "strategy": "cookie",
24389
+ "browser": true,
24390
+ "args": [
24391
+ {
24392
+ "name": "from",
24393
+ "type": "str",
24394
+ "required": true,
24395
+ "positional": true,
24396
+ "help": "Departure city (e.g. London / Paris / Shanghai)"
24397
+ },
24398
+ {
24399
+ "name": "to",
24400
+ "type": "str",
24401
+ "required": true,
24402
+ "positional": true,
24403
+ "help": "Arrival city (e.g. Manchester / Lyon / Beijing)"
24404
+ },
24405
+ {
24406
+ "name": "country",
24407
+ "type": "str",
24408
+ "required": true,
24409
+ "help": "Route country slug (e.g. uk / france / italy / spain / germany / china)"
24410
+ },
24411
+ {
24412
+ "name": "limit",
24413
+ "type": "int",
24414
+ "default": 20,
24415
+ "required": false,
24416
+ "help": "Number of journeys (1-50)"
24417
+ }
24418
+ ],
24419
+ "columns": [
24420
+ "rank",
24421
+ "departureTime",
24422
+ "fromStation",
24423
+ "arrivalTime",
24424
+ "toStation",
24425
+ "duration",
24426
+ "changes",
24427
+ "url"
24428
+ ],
24429
+ "type": "js",
24430
+ "modulePath": "trip/train.js",
24431
+ "sourceFile": "trip/train.js",
24432
+ "navigateBefore": false
24433
+ },
24434
+ {
24435
+ "site": "trip",
24436
+ "name": "transfer",
24437
+ "description": "List Trip.com airport-transfer vehicles for a city + airport (type, seats, from-price)",
24438
+ "access": "read",
24439
+ "domain": "trip.com",
24440
+ "strategy": "cookie",
24441
+ "browser": true,
24442
+ "args": [
24443
+ {
24444
+ "name": "city",
24445
+ "type": "str",
24446
+ "required": true,
24447
+ "positional": true,
24448
+ "help": "Airport city (e.g. Bangkok / Beijing / Da Nang)"
24449
+ },
24450
+ {
24451
+ "name": "airport",
24452
+ "type": "str",
24453
+ "required": true,
24454
+ "positional": true,
24455
+ "help": "3-letter airport IATA code (e.g. DMK / PKX / DAD)"
24456
+ },
24457
+ {
24458
+ "name": "limit",
24459
+ "type": "int",
24460
+ "default": 20,
24461
+ "required": false,
24462
+ "help": "Number of vehicles (1-50)"
24463
+ }
24464
+ ],
24465
+ "columns": [
24466
+ "rank",
24467
+ "type",
24468
+ "passengers",
24469
+ "luggage",
24470
+ "price",
24471
+ "currency",
24472
+ "url"
24473
+ ],
24474
+ "type": "js",
24475
+ "modulePath": "trip/transfer.js",
24476
+ "sourceFile": "trip/transfer.js",
24477
+ "navigateBefore": false
24478
+ },
23616
24479
  {
23617
24480
  "site": "tvmaze",
23618
24481
  "name": "search",
@@ -24644,8 +25507,7 @@
24644
25507
  "modulePath": "twitter/auth.js",
24645
25508
  "sourceFile": "twitter/auth.js",
24646
25509
  "navigateBefore": false,
24647
- "siteSession": "persistent",
24648
- "defaultWindowMode": "foreground"
25510
+ "siteSession": "persistent"
24649
25511
  },
24650
25512
  {
24651
25513
  "site": "twitter",
@@ -25598,8 +26460,7 @@
25598
26460
  "modulePath": "upwork/auth.js",
25599
26461
  "sourceFile": "upwork/auth.js",
25600
26462
  "navigateBefore": false,
25601
- "siteSession": "persistent",
25602
- "defaultWindowMode": "foreground"
26463
+ "siteSession": "persistent"
25603
26464
  },
25604
26465
  {
25605
26466
  "site": "upwork",
@@ -26988,8 +27849,7 @@
26988
27849
  "modulePath": "youtube/auth.js",
26989
27850
  "sourceFile": "youtube/auth.js",
26990
27851
  "navigateBefore": false,
26991
- "siteSession": "persistent",
26992
- "defaultWindowMode": "foreground"
27852
+ "siteSession": "persistent"
26993
27853
  },
26994
27854
  {
26995
27855
  "site": "youtube",
@@ -27431,8 +28291,7 @@
27431
28291
  "modulePath": "zepto/auth.js",
27432
28292
  "sourceFile": "zepto/auth.js",
27433
28293
  "navigateBefore": false,
27434
- "siteSession": "persistent",
27435
- "defaultWindowMode": "foreground"
28294
+ "siteSession": "persistent"
27436
28295
  },
27437
28296
  {
27438
28297
  "site": "zepto",