hrtools/.vscode/launch.json

31 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2021-04-26 10:42:12 +00:00
{
// 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",
],
2021-04-27 10:36:08 +00:00
"url": "http:/localhost:12203/start",
2021-04-26 10:42:12 +00:00
"webRoot": "${workspaceFolder}"
}
]
}