Skip to content

Instantly share code, notes, and snippets.

@RomiC
Last active February 4, 2020 11:06
Show Gist options
  • Save RomiC/87b7d191ff49f1f5d8d807297f403140 to your computer and use it in GitHub Desktop.
Save RomiC/87b7d191ff49f1f5d8d807297f403140 to your computer and use it in GitHub Desktop.
Run Chrome with remote-debugging option
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="C:\Users\roman.charugin\AppData\Roaming\Google\Chrome\User Data" --remote-debugging-port=9222 --no-first-run --no-default-browser-check --auto-open-devtools-for-tabs
#!/bin/sh
nohup /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir="$HOME/Library/Application Support/Google/Chrome/Dev" --remote-debugging-port=9222 --no-first-run --no-default-browser-check --auto-open-devtools-for-tabs> /dev/null 2>&1 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment