I'm running source codes on VS Code with its chrome debugger. But, whenever running the chrome debugger, the chrome browser runs in incognito mode. In this mode, any chrome extensions and context can't be accessible.
Is there anyone who knows how to fix this issue, not running the chrome debugger in incognito mode?
This is my VS Code chrome debugger configuration.
{ "configurations": [
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
]
}
Add the code in "configurations":
"runtimeArgs": ["--incognito"]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With