hrtools/.vscode/launch.json
2021-04-27 18:36:08 +08:00

31 lines
1.1 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Chrome Extension debugging",
"port": 9222,
"type": "chrome",
"runtimeArgs": [
"--user-data-dir=/tmp/chromeproxy-userdata",
"--ignore-certificate-errors",
"--disable-dev-shm-usage",
"--mute-audio",
"--single-process",
"--safebrowsing-disable-auto-update",
"--disable-gpu",
"--no-sandbox",
"--disable-blink-features=AutomationControlled",
"--disable-infobars",
"--allow-running-insecure-content",
"--disable-features=TranslateUI",
"--test-type",
],
"url": "http:/localhost:12203/start",
"webRoot": "${workspaceFolder}"
}
]
}