2

Is it possible to open Chrome Developer Tools to inspect a Chrome App ?

fernandohur
  • 7,014
  • 11
  • 48
  • 86
  • If you want to open Chrome developer tools programmatically, it's impossible. http://stackoverflow.com/questions/16660325/open-safari-google-chrome-developer-tools-programmatically-from-javascript – Dayton Wang Jun 10 '15 at 23:35

3 Answers3

4

All debuggable targets are listed under chrome://inspect/. See the 'Apps' tab.

chrome://inspect page

Konrad Dzwinel
  • 36,825
  • 12
  • 98
  • 105
4

I managed to do it by following instructions to debug postman chrome app:

  • Go to chrome://flags/
  • Search for Debugging for packed apps
  • Enable this flag
  • Restart chrome

Then go to your app, right-click anywhere inside of it, and click on the option menu inspect.

hd84335
  • 8,815
  • 5
  • 34
  • 45
1

To open it by context menu, enable at chrome://flags/#debug-packed-apps

If the app blocks the context menu, find it at chrome://extensions (developer mode) or the Apps and Extensions Developer Tool.

Daniel Herr
  • 19,083
  • 6
  • 44
  • 61