I am trying to develop extensions for chrome and firefox that will communicate with my main program. I have developed a native library for the communication and in the extensions I just need to load the dll and call a method.
For Firefox I have no issue. I did it easily using ctypes.open("mydll.dll");
But for Chrome, as far as I know, currently there is no way to do that. because in one hand NPAPI is being phased out and in the other hand NaCI/ppapi runs in a sandbox.
Am I missing something or it's really impossible?
Thanks in advance.