Skip to content
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.

Enabling DevTools

Robin Gabriël edited this page Jan 24, 2020 · 1 revision

Chromely makes it very easy to enable Chrome's DevTools. The only thing you will need to do is enable Chromely's debugging mode.

To enable the debugging mode, you can configure it either in config file or via C# code.

  • Using config file
{
  "debuggingMode": true,
}
  • Using C# code
public class DefaultConfiguration : IChromelyConfiguration
{
   public DefaultConfiguration()
   {
      DebuggingMode = true;
   }
}

You will now be able to open the DevTools ContextMenu by right-clicking within your Chromely app.

Clicking on 'Show DevTools' reveals the DevTools Window.