I am developing an Edge extension, I need to send data from it to WPF application. In Chrome extension, i use $.post to send data like this:
var listener = "http://localhost:60024/";
$.post(listener, postData);
And in WPF application receive this data with HTTPListener:
_listener = new HttpListener();
_listener.Prefixes.Add("http://localhost:60024/");
_listener.Start();
But in Edge this does not work, because $.post dont do anything. I have seen that Native Messaging can be used, but I do not know if it works with WPF applications.
Could anybody help?