While the accepted answer is correct, it lacks details.
I got this working in CefSharp using the WinForms control in a WPF application. (WinForms management seems to have better performance). The code for remote debugging is likely to be very similar to a WPF control.
var settings = new CefSettings { RemoteDebuggingPort = 8088 }; Cef.Initialize(settings); WindowsFormsHost.Child = new ChromiumWebBrowser(url);
Then go to http://localhost:8088/ in your browser.
source share