I want to call a Windows (7/Vista/XP only) application from google chrome or Firefox. I am thinking of making an addon to do this. I can look up the tutorials mentioned here How to make firefox or google Chrome Add-on? . But, before that I wanted to know if it is possible to call a windows application from these browsers. Is it advisable to do such a thing ?
I want to call a Windows (7/Vista/XP only) application from google chrome or Firefox.
Share
On Chrome (Firefox also support npapi)
you have NPAPI (c extension) to call os directly
https://developer.chrome.com/extensions/npapi.html
call
ShellExecuteExfrom npapiOn Firefox
you also have this to call os command
https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIProcess
Example from above url