如何使用Native Messaging API 打开window程序

Posted 吃饭了吗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Native Messaging API 打开window程序相关的知识,希望对你有一定的参考价值。

0

我参照Fran?ois Beaufort的视频写了一个打开CMD程序的chrome应用,但是没效果,应该已调用到用于打开程序的本地应用了,但是似乎terminal.bat没有执行。
视频链接:https://www.youtube.com/watch?feature...

我的代码: 添加到chrome的应用

//**background.js**
//On click connect to the native terminal app
chrome.browserAction.onClicked.addListener(function () {
    chrome.extension.connectNative(‘terminal‘);
});
//**manifest.json**
{
    "name": "My extension",
    "version": "0.1",
    "background": {
        "scripts": [ "background.js" ]
    },
    "browser_action": {
        "default_title": "native messaging"
    },
    "permissions": [
        "nativeMessaging"
    ],
    "manifest_version": 2
}

本地应用:

//**manifest.json**
{
    "name": "terminal",
    "description": "Open Your Terminal",
    "path": "E:\\workspace\\open_terminal\\terminal.bat",
    "type": "stdio",
    "allowed_origins": {
        "chrome-extension://imefmccdbejlchmiempjpojbflghofdo/"
    }
}
//**terminal.bat**
@echo off

cd %systemRoot%\system32
start cmd.exe

我的问题是,我的代码是否有错误?或者是chrome版本或者操作系统的问题?我的chrome是25.0.1364.172 m,操作系统是window 7。或者告诉我在bat中怎么调试?至少能查看是否执行了bat文件。多谢!


以上是关于如何使用Native Messaging API 打开window程序的主要内容,如果未能解决你的问题,请参考以下文章

@react-native-firebase/messaging : TypeError: (0 , _messaging.default)(...).registerForRemoteNotific

React-Native:我退出我的应用程序后,messaging().onNotificationOpenedApp 没有调用

react-native-firebase_messaging:compileReleaseJavaWithJavac

无法在 Android 中设置 @react-native-firebase/messaging

Chrome 插件: 起动本地应用 (Native messaging)

TypeError(RN 0.61.2):_ firebaseApp.default.messaging不是函数