I need to keep a browser running in the background for a specific issue but i have to hide it so the enduser should not see. I have tried electron, nwjs and carlo and ended up using puppeteer since none of the above was meeting my expectation. I need to run a specific chrome extension. I have completed everything but i can't find out how to hide the chronium. I have tried "--no-startup-window" argument for chromium and window doesn't show up but code get stuck at
await puppeteer.launch(options);
I have read through puppeteer api and look through chronium args but could not figure out. Is there a way to hide chronium but run it in the background?
Thank you for your help in advance.