1

在 Visual Studio 代码中启动 chrome 调试器时,它会显示一个弹出窗口,其中显示“无法找到类型 'chrome' 的调试适配器”。

我已经尝试在 Chrome 的属性以及 launch.json 中将远程调试端口设置为 9222

这是我目前正在尝试使用的 launch.json:

{
    "version": "0.2.0",
    "configurations": [

        {
            "name": "Chrome Debug",
            "type": "chrome",
            "request": "launch",
            "url": "http://localhost/app",
            "runtimeArgs" : [
                "--remote-debugging-port=9222"
            ],
            "webRoot": "${workspaceFolder}/path_to_js"
        }
    ]
}
4

1 回答 1

1

我遇到过同样的问题。我卸载并重新安装了 Debugger for Chrome 扩展并重新启动了 VS Code。它开始工作了。

于 2019-09-29T08:24:27.493 回答