我正在运行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.
答案 0 :(得分:7)
根据 the docs ,您需要在后者的清单中明确授予您对扩展的NativeMessagingHosts的扩展权限:
"allowed_origins": [
"chrome-extension://<your_extension's_ID>/"
]