Skip to content

Instantly share code, notes, and snippets.

@pcostarg
Last active December 30, 2022 13:15
Show Gist options
  • Save pcostarg/cb578d869ef0cfc96608306b0e6a407e to your computer and use it in GitHub Desktop.
Save pcostarg/cb578d869ef0cfc96608306b0e6a407e to your computer and use it in GitHub Desktop.
Vivaldi - Remote debugging in VS Code

Vivaldi - Remote debugging in VS Code

Change url for whataver you want if using different then default. This is the url it will open automaticly

Notes for attach

  • Create a new shortcut for Vivaldi and in the target add this flags: --remote-debugging-port=9222 --user-data-dir=remote-debug-profile
  • Use this shortcut to open the browser and use it
  • url property makes it only listen to the tab using this url, default is to listen in all tabs.
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Chrome/Vivaldi",
"port": 9222,
"request": "attach",
"type": "chrome",
"url": "http://localhost:8080"
},
{
"type": "chrome",
"request": "launch",
"runtimeExecutable": "${env:LocalAppData}/Vivaldi/Application/vivaldi.exe",
"name": "Launch Vivaldi",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment