根据 Chrome Native Messaging 文档,对 connectNative() 的成功调用会返回一个端口,您可以使用该端口将消息发布到本机应用程序(Mac 应用程序)。在我的例子中, nativeConnect() 确实返回了一个有效的端口,但是对 onDisconnected() 监听器的调用几乎立即被触发。每当触发侦听器时,它都会将“lastError”属性打印到浏览器的控制台,这给出:
Specified native messaging host not found.
为什么要这样做?产生 msg 的监听器如下所示:
function onDisconnected() {
console.log("Inside onDisconnected(): " + chrome.runtime.lastError.message);
port = null;
}
文档底部有一个关于此特定错误的完整部分(Native Messaging),建议的补救措施是清单文件的命名、放置或定义(JSON)不正确,或者主机应用程序未命名或未定位清单说应该在哪里。该文档说 connectNative() 将“在单独的进程中启动主机”,但 Activity Monitor 没有提供任何证据表明本机主机应用程序已启动。
我调用 connectNative() 如下:
chrome.runtime.onMessageExternal.addListener(
function(request, sender, sendResponse) {
//var imgdata = JSON.stringify(request.imgdata);
//process it somehow here
port = chrome.runtime.connectNative("com.allinlearning.nmhforbrowserextension");
if (port)
{
console.log("connectNative() returned a non-null port");
port.onMessage.addListener(onNativeMessage);
port.onDisconnect.addListener(onDisconnected);
}
});
根据文档,我的本机主机清单文件位于正确的文件夹中,解析为 JSON,如下所示:
{
"name": "com.allinlearning.nmhforbrowserextension",
"description": "Manifest for native messaging host for Google browser extension",
"path": "/Users/mycomputer1/Documents/nmhost.app",
"type": "stdio",
"allowed_origins": ["chrome-extension://gldheanjpgopipommeingjlnoiamdfol/"]
}
Chrome 扩展程序也需要一个清单,在我获得权限部分之前,我无法从 connectNative() 获取非空端口,所以我很确定现在这是正确的:
"permissions": [
"nativeMessaging",
"tabs",
"activeTab",
"background",
"http://*/", "https://*/"
]
更新:
弄清楚如何从 Mac 的终端启动 Chrome 浏览器,并带有允许查看更多“详细”日志记录的标志。然后,当我运行一些东西时,我注意到了这个输出:
[21285:38915:1231/164417:ERROR:native_process_launcher.cc(131)] Can't find manifest for native messaging host com.allinlearning.nmhforbrowserextension
很明显它找不到主机清单,但是为什么?