I want to create a webextension on firefox, that communicate with a simple c++ application, I would like to send a message to the c++ application, and to recieve a simple message(Hello world by example).
For now this is what I have done :
manifest.json (webextension)
{
"manifest_version": 2,
"name": "nameofwebextension",
"version": "1.0",
"description": "test",
"permissions": [
"tabs",
"activeTab",
"downloads",
"downloads.open",
"nativeMessaging"
],
"icons": {
"48": "icons/border-48.png"
},
"content_scripts": [
{
"matches": ["http://www.testwebsite.com/*"],
"js": ["content.js"]
}
],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/beasts-32.png",
"default_title": "test",
"default_popup": "popup/test.html",
"browser_style": false
},
"applications": {
"gecko": {
"id": "name@example.org",
"strict_min_version": "50.0"
}
}
}
background.js
var port = browser.runtime.connectNative("nameofapp");
console.log("Sending: ping");
port.postMessage("ping");
port.onMessage.addListener((response) => {
console.log("Received: " + response);
});
manifest.json (c++ app)
{
"name": "nameofapp",
"description": "Example host for native messaging",
"path": "bin/Debug/nameofapp.exe",
"type": "stdio",
"allowed_extensions": [ "name@example.org" ]
}
main.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
//cin.get();
return 0;
}
i have also create the right key in the registry editor.
This what I get into the browser console :
Sending: ping
Native application tried to send a message of 1819043144 bytes,
which exceeds the limit of 1048576 bytes.