Skip to content

Instantly share code, notes, and snippets.

@galcyurio
Last active April 9, 2018 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save galcyurio/d86cb2adc2efdb25bef09547bd5eccac to your computer and use it in GitHub Desktop.
Save galcyurio/d86cb2adc2efdb25bef09547bd5eccac to your computer and use it in GitHub Desktop.
chrome debugger 를 통해 whale 브라우저를 incognito(시크릿) 모드 + debugging 모드로 시작하기
{
// 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": [
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Whale Incognito",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "C:/Program Files (x86)/Naver/Naver Whale/Application/whale.exe",
"windows": {
"runtimeArgs": ["--incognito", "--remote-debugging-port=9222"]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment