3

我正在尝试通过本机消息接收来自我的 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(它因消息而异)。

问题是:

  1. 没有任何内容写入文件。它完全是空白的。
  2. 该文件需要很长时间才能创建(约 4 秒)。
  3. 我的host.exe实例永远不会终止。它仍在运行(我可以在任务管理器中查看)。
4

1 回答 1

1

为了让我的扩展工作,我按照以下步骤操作:

  1. 我删除了我的注册表项,然后将其重新添加到我的 HKLM 注册表中。
  2. 虽然没有必要,host.exe实际上只需要从扩展接收一条消息,所以我将之前的“开放端口”消息更改为“无端口”消息,即

    chrome.runtime.sendNativeMessage(...);

  3. 重要的是,当我将要发送的文本更改为{"text":data[0]}简单的字符串{"text":"Hello from Chrome!"}时,一切都开始顺利进行。是一个大约 250KB 的字符串,根据开发人员的网站data[0],这绝对是可以接受的消息大小。但是,我为这个问题创建了一个不同的问题,因为我能够解决我遇到的一般消息发送和接收问题。

于 2014-12-26T06:04:57.803 回答