我正在尝试创建一个插件/监听器,以便将外部应用程序泵消息发送到我的SPA页面/应用程序。
我创建了清单,JS文件,并添加了一个reg条目,但无济于事,我的听众没有被触发。
我有:
// JavaScript源代码
Native.js - 插件
chrome.runtime.onMessageExternal.addListener(
function (request, sender, sendResponse) {
console.log(request);
console.log(sender);
console.log(sendResponse);
});
Manifest.json - 插件 { “manifest_version”:2,
"name": "Native Messaging Example",
"version": "1.0",
"permissions": [
"nativeMessaging"
],
"background": {
"scripts": [ "Native.js" ]
},
"externally_connectable": {
"matches": [ "*://localhost/*", "*://casetest/*", "*://case/*" ]
}
}
C#
Program.js
using System;
using System.IO;
namespace ChromeNativeMessaging
{
class Program
{
static void Main(string[] args)
{
OpenStandardStreamOut("data");
Console.ReadLine();
}
private static void OpenStandardStreamOut(string stringData)
{
String str = "{\"text\": \"" + stringData + "\"}";
//String str = stringData;
Stream stdout = Console.OpenStandardOutput();
stdout.WriteByte((byte)str.Length);
stdout.WriteByte((byte)'\0');
stdout.WriteByte((byte)'\0');
stdout.WriteByte((byte)'\0');
Console.Write(str);
}
}
}
的manifest.json
{
"name": "com.example.nativeMessage",
"description": "Hello World App",
"path": "C:\\Users\\sas\\Documents\\visual studio 2013\\Projects\\ChromeNativeMessaging\\ChromeNativeMessaging\\bin\\Debug\\ChromeNativeMessaging.exe",
"type": "stdio",
"allowed_origins": [
"chrome-extension://gbdadncpjaecammkmeolpbembeedjohb/"
]
}
答案 0 :(得分:1)
Chrome从不收听来自外部的本机连接(onMessageExternal
不适用),也不会运行您的C#代码神奇地联系Chrome。
只有您的JavaScript方可以启动连接(通过运行本机主机的新副本),之后您可以保持连接打开(如果您使用connect()
执行此操作)。
因此,如果您希望收到浏览器外发生的事件的通知,则需要从扩展端启动本机主机,然后在本机主机中处理这些事件。
总而言之,您应该(重新)阅读完整的文档:https://developer.chrome.com/extensions/nativeMessaging