How to pull up Chrome Console in Visual Studio Code

Viewed 3887

I have 2 questions about the same thing please ;)

I am developing an extension for Code and I need to see the Chrime console. Therefore:

  1. How can I pull up Chrome Console to see the Console messages coming from my extension

  2. How can I pull up a Chrome Console for the HTML content that I and displaying in my extension via DocumentProvider?

The question 2 is there as I happened to visualize the Console after some exception but I could not access the HTML and JS content of the extension generated page.

1 Answers

See Help -> Toggle Developer Tools.

Related