when debugging in vscode in "launch chrome" mode, raises a nice and clean chrome instance, without any extension installed. It is good, but in some cases I need react-dev-tools extension and have to run regular chrome to get this done. Is it any way to have clean debugging chrome, but with dev tools added?
launch configuration is usual:
{ "type": "chrome",
"request": "launch",
"name": "Launch Chrome:3000",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}"
}