我的OS平台是赢得7.我开始写扩展,并尝试与C ++应用程序进行通信。 这是明显的我的应用程序:(xxx是我的分机号)
{
"name": "com.google.chrome.testc",
"path": "D:\\testC\\debug\\testC.exe",
"description": "My Application",
"type": "stdio",
"allowed_origins": [
"chrome-extension://xxx/"
]
}
我还添加注册表键的位置:HKEY_LOCAL_MACHINE \ SOFTWARE \谷歌\镀铬\ NativeMessagingHosts: “com.google.chrome.testc:d:\ TESTC \调试\的manifest.json”
但是,当扩展名为“chrome.runtime.sendNativeMessage(‘com.google.chrome.testc’,...)”,它总是报告“指定的本地消息主机没有找到。”
我错过了哪一步? 或者什么不对以上? 谢谢。