Last active
February 4, 2020 11:06
-
-
Save RomiC/87b7d191ff49f1f5d8d807297f403140 to your computer and use it in GitHub Desktop.
Run Chrome with remote-debugging option
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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