fernandohur
fernandohur

Reputation: 7134

How to open Chrome Developer Tools in a Chrome App

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

Upvotes: 2

Views: 4792

Answers (3)

hd84335
hd84335

Reputation: 9883

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.

Upvotes: 4

Konrad Dzwinel
Konrad Dzwinel

Reputation: 37903

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

chrome://inspect page

Upvotes: 4

Daniel Herr
Daniel Herr

Reputation: 20458

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.

Upvotes: 1

Related Questions