On chrome, extensions can exchange messages with native applications with the help of native messaging APIs How can we achieve this on IE?
use-case : We have our own desktop application which users can download and install from our site. Next time when they revisit, we should be able to detect if the native application is installed and launch if its available.
We were able to build a solution on chrome with the help of an extension which makes use of chrome native messaging APIs to connect to native application.
Need something similar on IE browsers or a generic solution which will work across all major browsers.
You might want to have a look at URL handlers, they are supported for Firefox, Chrome and Internet Explorer.
Basically it enables you to register for example
myapp://
for the browser and then you can have the browser call the application that is registered to this handler. This is a technique which for example uTorrent uses to open trackers for torrent:// and magnet://.You can check these links for details or search for solutions here on SO: https://developer.mozilla.org/en/docs/Web-based_protocol_handlers https://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx https://developer.chrome.com/apps/manifest/url_handlers