This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 278
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.
Chromely
Getting Started
Networking
Resources
Debugging
Detailed documentation on:
- Getting Started
- Configuring Chromely
- Loading Html
- Resource Handling
- Configuring Message Routing
- Register Ajax/XHR Handlers
- JavaScript Execution
- Scheme Registration
- Scheme Handlers
- Custom Http Handlers
- How to use commands
- Custom CEF Handlers
- Chromely on Raspberry Pi
- How to use app settings
- CEF binaries download
- Using DevTools