Chrome:本机消息传递错误:禁止访问指定的本机消息传递主机

时间:2013-11-26 11:46:51

标签: javascript google-chrome google-chrome-extension chrome-native-messaging

我正在运行Native messaging示例应用程序。 (http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/nativeMessaging/)。

我添加了注册表项

 HKEY_LOCAL_MACHINE\SOFTWARE\Google\Chrome\NativeMessagingHosts\com.google.chrome.example.echo

当我连接到本机主机时,我收到错误:

Failed to connect: Access to the specified native messaging host is forbidden.

1 个答案:

答案 0 :(得分:7)

根据 the docs ,您需要在后者的清单中明确授予您对扩展的NativeMessagingHosts的扩展权限:

"allowed_origins": [
    "chrome-extension://<your_extension's_ID>/"
]