How can I debug a running Kiosk-mode Chrome application?

google-chrome-app

Solution

If you run Chrome with the `--remote-debugging-port=9222` option it will provide access to DevTools at `http://localhost:9222/`. If you need to access it from a different computer you can forward the port with ssh.

Source: http://blog.chromium.org/2011/05/remote-debugging-with-chrome-developer.html

Problem

I have a Chrome application that experiences issues only when being run in kiosk mode. Is there any way to connect a debugger or enable the inspector for Kiosk-mode applications?

Original source

Related problems