is there any way with chrome extension to get / set parameters with command line application in the desktop ? with out using npnpi ? maybe http?
Asked
Active
Viewed 249 times
1 Answers
0
No there is not any feasible way to do it for security reasons. However you can register a custom protocol like example://
and install a program on client system to handle your custom protocol. Hope this helps!

ASHUTOSH
- 862
- 1
- 10
- 17
-
tnx,can you direct me to tutorial or link ? how this method called ( so i can goggle it ) – user63898 Aug 18 '12 at 19:38
-
For registering a custom protocol: `http://stackoverflow.com/questions/389204/how-do-i-create-my-own-url-protocol-e-g-so`. After you have registered your own protocol, you need to write a desktop application that handles your protocol. Here is a link that might help you:`http://social.msdn.microsoft.com/Forums/en-US/ieextensiondevelopment/thread/df04292f-bfe0-44a9-a067-87121fa4a108`. – ASHUTOSH Aug 19 '12 at 03:46