I\'m trying to remote debugg a chrome instance using the remote debug option in chrome:
chrome.exe --remote-debugging-port=1337
as describe
You can create simple TCP proxy with netcat:
EXTERNAL_PORT=1338 CHROME_DEBUG_PORT=1337 # This is the port specified with --remote-debugging-port nc -l -p ${EXTERNAL_PORT} -c "nc 127.0.0.1 ${CHROME_DEBUG_PORT}"