1

我正在尝试创建一个插件/侦听器,以使外部应用程序将消息泵入我的 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#

程序.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);
        }
    }
}

清单.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/"
    ]
}
4

1 回答 1

1

Chrome 从不监听来自外部的本机连接(onMessageExternal不适用),运行您的 C# 代码也不会神奇地联系 Chrome。

只有您的 JavaScript 端可以启动连接(通过运行本机主机的新副本),之后您可以保持连接打开(如果您使用connect().

因此,如果您想在浏览器外部发生事件时收到通知,您需要从扩展端启动本机主机,然后在本机主机中处理这些事件。

总而言之,您应该(重新)完整阅读文档:https ://developer.chrome.com/extensions/nativeMessaging

于 2015-03-12T15:46:29.060 回答