arn-browser 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arn-browser",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "A lightweight, browser autmation helper.",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -314,7 +314,7 @@ async function chromiumLauncher({ profilePath, proxy, timezoneId, CapSolver, max
314
314
  // --- UI ---
315
315
  "--disable-infobars",
316
316
  ];
317
- const ignoreDefaultArgs = ["--enable-automation", "--no-sandbox"];
317
+ const ignoreDefaultArgs = ["--enable-automation"];
318
318
 
319
319
  if (CapSolver) {
320
320
  const extPath = path.resolve(`./utility/browser-fingerprint/CapSolver`);
@@ -589,7 +589,7 @@ async function braveLauncher({ profilePath, proxy, CapSolver, timezoneId, maxWid
589
589
  "--disable-features=Translate,BraveRewards,BraveWallet,BraveNews,Sidebar,SidePanel",
590
590
  "--disable-infobars",
591
591
  ];
592
- const ignoreDefaultArgs = ["--enable-automation", "--no-sandbox"];
592
+ const ignoreDefaultArgs = ["--enable-automation"];
593
593
  if (CapSolver) {
594
594
  const extPath = path.resolve(`./utility/browser-fingerprint/CapSolver`);
595
595
  args.push(`--load-extension=${extPath}`);