我正在尝试通过本机消息接收来自我的 chrome 扩展程序的消息。popup.html
控制台指示正在发送消息,但我的主机由于某种原因没有收到它。我可以看到主机native.exe
正在任务管理器中启动,但主机没有收到发送的数据。
popup.js
document.addEventListener('DOMContentLoaded', function() {
var downloadButton= document.getElementById('Button');
downloadButton.addEventListener('click', function () {
chrome.tabs.query({currentWindow: true, active: true}, function (tabs) {
chrome.tabs.executeScript(tabs[0].id, {file: "myScript.js"}, function (data) {
sendNativeMessage(data[0]);
});
});
});
});
function sendNativeMessage(msg) {
var hostName = "com.google.example";
console.log("Connecting to host: " + hostName);
port = chrome.runtime.connectNative(hostName);
message = {"text": msg};
port.postMessage(message);
console.log("Sent message: " + JSON.stringify(message));
}
现在,当我从 Chrome 扩展程序发送消息时,我可以看到控制台日志popup.html
并且消息是正确的。
我尝试使用来自Native Messaging Chrome的一些有人声称已经工作的代码来测试所有内容。具体来说,我有
本机程序
static void Main(string[] args) {
while (OpenStandardStreamIn() != null || OpenStandardStreamIn() != "")
{
Console.WriteLine(OpenStandardStreamIn());
}
}
private static string OpenStandardStreamIn()
{
//Read first four bytes for length information
System.IO.Stream stdin = Console.OpenStandardInput();
int length = 0;
byte[] bytes = new byte[4];
stdin.Read(bytes, 0, 4);
length = System.BitConverter.ToInt32(bytes, 0);
string input = "";
for (int i = 0; i < length; i++)
input += (char)stdin.ReadByte();
return input;
}
我仍在尝试围绕 nativeMessaging 进行思考,但是由于我可以看到通过控制台日志发送的消息,因此我不得不假设错误出在我的.exe
. 我已经创建了注册表项 HKCU,并创建了主机manifest.json
文件。由于扩展程序正在启动.exe
,我很确定所有这些都可以正常工作。
如果有人可以为此提供一些帮助,那将不胜感激。谢谢!
编辑:在完全没有改变之后,我无法native.exe
从我的扩展程序中启动。为了解决这个问题,我尝试重写我的发件人以不打开端口:
...
chrome.tabs.executeScript(tabs[0].id, {file: "myScript.js"}, function (data) {
chrome.runtime.sendNativeMessage('com.google.example', {"text":data[0]}, function(response) {
if (chrome.runtime.lastError)
console.log("ERROR");
} else {
console.log("Response: " + response);
}
});
});
...
这也根本行不通。我不知道我做错了什么,也不知道为什么.exe
当我从我的扩展程序发送消息时我的主机停止启动。
编辑#2
好消息!
我删除了我的注册表项,然后再次将其添加到本地计算机注册表(即 HKLM)中。同样,我使用来自Native Messaging Chrome的代码从我的主机发送和接收。现在,当我查看我的扩展程序的日志时,我可以看到来自我的主机的正确响应。我通过简单地调用来使用“no-port”方法chrome.runtime.sendNativeMessage(...)
,这对我的目的来说很好。不幸的是,我没有收到从分机到主机的消息。此外,host.exe
即使在收到消息后,我也不会退出。我不知道为什么,但如果有人可以提供帮助,我将不胜感激。
在我的主机中,我试图将传入消息写入文件只是为了测试我是否收到了消息:
System.IO.File.WriteAllText(@"path_to_file.txt", OpenStandardStreamIn());
注意:我从扩展程序传递到主机的消息大约是 250KB(它因消息而异)。
问题是:
- 没有任何内容写入文件。它完全是空白的。
- 该文件需要很长时间才能创建(约 4 秒)。
- 我的
host.exe
实例永远不会终止。它仍在运行(我可以在任务管理器中查看)。