简体   繁体   中英

How to keep browser extensions installed in debugging browser Window?

I'd like to customize my browser which runs when I starts debugging in VS Code. Browser always starts clean with no extensions, I'd like to have installed extensions like Redux Devtools, React Devtools. Anyone knows how to cofnigure that?

To run Chrome browser with default user config (including extensions) this should be added to the launch.json debugger ocnfiguration:

"runtimeArgs": [
    "--profile-directory=Default"
]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM