@browserless.io/browserless 2.24.1 → 2.24.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 (83) hide show
  1. package/CHANGELOG.md +19 -4
  2. package/README.md +3 -4
  3. package/build/browsers/browsers.playwright.js +6 -1
  4. package/build/browsers/index.js +1 -1
  5. package/build/routes/chrome/http/content.post.body.json +8 -8
  6. package/build/routes/chrome/http/pdf.post.body.json +8 -8
  7. package/build/routes/chrome/http/scrape.post.body.json +8 -8
  8. package/build/routes/chrome/http/screenshot.post.body.json +8 -8
  9. package/build/routes/chromium/http/content.post.body.json +8 -8
  10. package/build/routes/chromium/http/pdf.post.body.json +8 -8
  11. package/build/routes/chromium/http/scrape.post.body.json +8 -8
  12. package/build/routes/chromium/http/screenshot.post.body.json +8 -8
  13. package/build/routes/management/http/meta.get.js +3 -1
  14. package/extensions/ublock/_locales/ar/messages.json +3 -3
  15. package/extensions/ublock/_locales/bg/messages.json +1 -1
  16. package/extensions/ublock/_locales/br_FR/messages.json +2 -2
  17. package/extensions/ublock/_locales/cy/messages.json +11 -11
  18. package/extensions/ublock/_locales/el/messages.json +2 -2
  19. package/extensions/ublock/_locales/hu/messages.json +1 -1
  20. package/extensions/ublock/_locales/id/messages.json +1 -1
  21. package/extensions/ublock/_locales/lv/messages.json +4 -4
  22. package/extensions/ublock/_locales/mk/messages.json +130 -130
  23. package/extensions/ublock/_locales/oc/messages.json +1 -1
  24. package/extensions/ublock/_locales/pt_BR/messages.json +1 -1
  25. package/extensions/ublock/_locales/pt_PT/messages.json +2 -2
  26. package/extensions/ublock/_locales/si/messages.json +100 -100
  27. package/extensions/ublock/_locales/sr/messages.json +4 -4
  28. package/extensions/ublock/_locales/vi/messages.json +19 -19
  29. package/extensions/ublock/_locales/zh_TW/messages.json +28 -28
  30. package/extensions/ublock/assets/assets.json +33 -29
  31. package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +2984 -3287
  32. package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +150 -171
  33. package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +37 -27
  34. package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +802 -888
  35. package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +2355 -2071
  36. package/extensions/ublock/assets/ublock/badlists.txt +9 -1
  37. package/extensions/ublock/assets/ublock/badware.min.txt +354 -243
  38. package/extensions/ublock/assets/ublock/filters.min.txt +5837 -5737
  39. package/extensions/ublock/assets/ublock/privacy.min.txt +151 -38
  40. package/extensions/ublock/assets/ublock/quick-fixes.min.txt +83 -127
  41. package/extensions/ublock/assets/ublock/unbreak.min.txt +66 -50
  42. package/extensions/ublock/css/codemirror.css +4 -0
  43. package/extensions/ublock/document-blocked.html +3 -1
  44. package/extensions/ublock/js/arglist-parser.js +116 -0
  45. package/extensions/ublock/js/background.js +1 -1
  46. package/extensions/ublock/js/logger-ui.js +1 -1
  47. package/extensions/ublock/js/messaging.js +9 -2
  48. package/extensions/ublock/js/pagestore.js +3 -1
  49. package/extensions/ublock/js/redirect-engine.js +3 -1
  50. package/extensions/ublock/{assets/resources/set-attr.js → js/resources/attribute.js} +115 -11
  51. package/extensions/ublock/js/resources/base.js +38 -0
  52. package/extensions/ublock/js/resources/cookie.js +419 -0
  53. package/extensions/ublock/js/resources/href-sanitizer.js +188 -0
  54. package/extensions/ublock/js/resources/localstorage.js +235 -0
  55. package/extensions/ublock/js/resources/parse-replace.js +54 -0
  56. package/extensions/ublock/js/resources/prevent-settimeout.js +236 -0
  57. package/extensions/ublock/js/resources/proxy-apply.js +109 -0
  58. package/extensions/ublock/js/resources/replace-argument.js +120 -0
  59. package/extensions/ublock/{assets → js}/resources/run-at.js +20 -4
  60. package/extensions/ublock/{assets → js}/resources/safe-self.js +5 -4
  61. package/extensions/ublock/{assets → js}/resources/scriptlets.js +90 -1589
  62. package/extensions/ublock/js/resources/set-constant.js +287 -0
  63. package/extensions/ublock/js/resources/shared.js +44 -0
  64. package/extensions/ublock/js/resources/spoof-css.js +163 -0
  65. package/extensions/ublock/js/s14e-serializer.js +2 -1
  66. package/extensions/ublock/js/scriptlet-filtering-core.js +1 -1
  67. package/extensions/ublock/js/scriptlet-filtering.js +1 -31
  68. package/extensions/ublock/js/static-dnr-filtering.js +143 -129
  69. package/extensions/ublock/js/static-filtering-parser.js +27 -117
  70. package/extensions/ublock/js/static-net-filtering.js +53 -141
  71. package/extensions/ublock/js/traffic.js +1 -1
  72. package/extensions/ublock/js/urlskip.js +166 -0
  73. package/extensions/ublock/js/vapi-background-ext.js +38 -14
  74. package/extensions/ublock/manifest.json +1 -1
  75. package/package.json +12 -12
  76. package/src/browsers/browsers.playwright.ts +8 -1
  77. package/src/browsers/index.ts +1 -1
  78. package/src/routes/management/http/meta.get.ts +6 -1
  79. package/src/routes/management/http/static.get.ts +1 -1
  80. package/static/docs/swagger.json +10 -10
  81. package/static/docs/swagger.min.json +9 -9
  82. package/static/function/client.js +66 -186
  83. package/static/function/index.html +66 -186
@@ -236,15 +236,15 @@
236
236
  "description": ""
237
237
  },
238
238
  "popupImageRulePrompt": {
239
- "message": "images",
239
+ "message": "delweddau",
240
240
  "description": ""
241
241
  },
242
242
  "popup3pAnyRulePrompt": {
243
- "message": "3rd-party",
243
+ "message": "3ydd-parti",
244
244
  "description": ""
245
245
  },
246
246
  "popup3pPassiveRulePrompt": {
247
- "message": "3rd-party CSS/images",
247
+ "message": "CSS/delweddau 3ydd-parti",
248
248
  "description": ""
249
249
  },
250
250
  "popupInlineScriptRulePrompt": {
@@ -312,7 +312,7 @@
312
312
  "description": "English: Click, Ctrl-click"
313
313
  },
314
314
  "pickerContextMenuEntry": {
315
- "message": "Block element…",
315
+ "message": "Blocio elfen…",
316
316
  "description": "An entry in the browser's contextual menu"
317
317
  },
318
318
  "settingsCollapseBlockedPrompt": {
@@ -464,11 +464,11 @@
464
464
  "description": "English: Lists of blocked hosts"
465
465
  },
466
466
  "3pApplyChanges": {
467
- "message": "Apply changes",
467
+ "message": "Rhoi newidiadau ar waith",
468
468
  "description": "English: Apply changes"
469
469
  },
470
470
  "3pGroupDefault": {
471
- "message": "Built-in",
471
+ "message": "Mewnol",
472
472
  "description": "Filter lists section name"
473
473
  },
474
474
  "3pGroupAds": {
@@ -488,7 +488,7 @@
488
488
  "description": "Filter lists section name"
489
489
  },
490
490
  "3pGroupCookies": {
491
- "message": "Cookie notices",
491
+ "message": "Hysbysiadau cwci",
492
492
  "description": "Filter lists section name"
493
493
  },
494
494
  "3pGroupAnnoyances": {
@@ -940,7 +940,7 @@
940
940
  "description": "Third paragraph of 'Filter issues' section in Support pane"
941
941
  },
942
942
  "supportS4H": {
943
- "message": "Bug report",
943
+ "message": "Adroddiad nam",
944
944
  "description": "Header of 'Bug report' section in Support pane"
945
945
  },
946
946
  "supportS4P1": {
@@ -1032,7 +1032,7 @@
1032
1032
  "description": "Link to privacy policy on GitHub (English)"
1033
1033
  },
1034
1034
  "aboutChangelog": {
1035
- "message": "Changelog",
1035
+ "message": "Cofnod newidiadau",
1036
1036
  "description": ""
1037
1037
  },
1038
1038
  "aboutCode": {
@@ -1224,11 +1224,11 @@
1224
1224
  "description": "for generic 'Submit' buttons"
1225
1225
  },
1226
1226
  "genericApplyChanges": {
1227
- "message": "Apply changes",
1227
+ "message": "Rhoi newidiadau ar waith",
1228
1228
  "description": "for generic 'Apply changes' buttons"
1229
1229
  },
1230
1230
  "genericRevert": {
1231
- "message": "Revert",
1231
+ "message": "Gwrthdroi",
1232
1232
  "description": "for generic 'Revert' buttons"
1233
1233
  },
1234
1234
  "genericBytes": {
@@ -960,7 +960,7 @@
960
960
  "description": "Second paragraph of 'Troubleshooting Information' section in Support pane"
961
961
  },
962
962
  "supportS6H": {
963
- "message": "Αναφέρετε ένα πρόβλημα φίλτρου",
963
+ "message": "Αναφέρετε πρόβλημα φίλτρου",
964
964
  "description": "Header of 'Report a filter issue' section in Support pane"
965
965
  },
966
966
  "supportS6P1S1": {
@@ -1064,7 +1064,7 @@
1064
1064
  "description": "Shown in the About pane"
1065
1065
  },
1066
1066
  "aboutCDNsInfo": {
1067
- "message": "Ένα τυχαία επιλεγμένο CDN χρησιμοποιείται όταν πρέπει να ενημερωθεί μια λίστα φίλτρων",
1067
+ "message": "Χρησιμοποιείται τυχαία-επιλεγμένο CDN όταν πρέπει να ενημερωθεί μια λίστα φίλτρων",
1068
1068
  "description": "Shown in the About pane"
1069
1069
  },
1070
1070
  "aboutBackupDataButton": {
@@ -1192,7 +1192,7 @@
1192
1192
  "description": "Button text to navigate to the blocked page"
1193
1193
  },
1194
1194
  "docblockedRedirectPrompt": {
1195
- "message": "The blocked page wants to redirect to another site. If you choose to proceed, you will navigate directly to: {{url}}",
1195
+ "message": "A blokkolt oldal egy másik webhelyre akarja átirányítani. Ha a folytatást választja, akkor közvetlenül ide fog navigálni: {{url}}",
1196
1196
  "description": "Text warning about an incoming redirect"
1197
1197
  },
1198
1198
  "cloudPush": {
@@ -1192,7 +1192,7 @@
1192
1192
  "description": "Button text to navigate to the blocked page"
1193
1193
  },
1194
1194
  "docblockedRedirectPrompt": {
1195
- "message": "The blocked page wants to redirect to another site. If you choose to proceed, you will navigate directly to: {{url}}",
1195
+ "message": "Halaman yang terblokir ingin dialihkan ke situs lain. Jika Anda memilih untuk melanjutkan, Anda akan langsung menuju ke: {{url}}",
1196
1196
  "description": "Text warning about an incoming redirect"
1197
1197
  },
1198
1198
  "cloudPush": {
@@ -340,7 +340,7 @@
340
340
  "description": "Section for controlling user interface appearance"
341
341
  },
342
342
  "settingsThemeLabel": {
343
- "message": "Izskats",
343
+ "message": "Motīvs",
344
344
  "description": "Label for checkbox to enable a custom dark theme"
345
345
  },
346
346
  "settingsThemeAccent0Label": {
@@ -480,7 +480,7 @@
480
480
  "description": "Filter lists section name"
481
481
  },
482
482
  "3pGroupMalware": {
483
- "message": "Ļaundabīgo programmu domēni",
483
+ "message": "Aizsardzība pret ļaunprātīgām (inficētas vai satur vīrusus) vietnēm, drošība",
484
484
  "description": "Filter lists section name"
485
485
  },
486
486
  "3pGroupSocial": {
@@ -552,7 +552,7 @@
552
552
  "description": "Button in the 'My filters' pane"
553
553
  },
554
554
  "1pExport": {
555
- "message": "Eksportēt",
555
+ "message": "Eksportēt",
556
556
  "description": "Button in the 'My filters' pane"
557
557
  },
558
558
  "1pExportFilename": {
@@ -636,7 +636,7 @@
636
636
  "description": "Button in the 'Trusted sites' pane"
637
637
  },
638
638
  "whitelistExport": {
639
- "message": "Eksportēt",
639
+ "message": "Eksportēt",
640
640
  "description": "Button in the 'Trusted sites' pane"
641
641
  },
642
642
  "whitelistExportFilename": {