Hope you are doing well! I'm trying to create google chrome extension with native messaging functionality where we can send message to our native application and catch there response like :
chrome.runtime.connectNative('com.my_company.my_application', {filepath: "eyz.png"}, (resp)=> {console.log(resp)});
But geting undefined in response.
Native application : I have created .net console application where we want to send some response back(where did this call come from) in my case google chrome extension.
Right now not able to send back response extension.
Please assist me
Thanks in advance.