I have created a Chrome extension with the nativeMessaging permission added to the manifest.
I am opening a port to the native messaging host.
The manifest for my native messaging host points to an executable jar file.
When I launch my extension, there are no errors, the connection seems fine, but the code in my jar file never seems to run. (For testing I show a new JFrame that is created in the main() method. When double-clicking the jar file it shows the JFrame. But when running the jar file via Chrome Native Messaging, the JFrame doesn't show up.
Is there something I am missing?
I've managed to do this using a Java executable wrapper (I used Launch4j).
This is the manifest file:
This is the native host application I wrapped: