Accops Native Client

Send a message to a native application.

什么是Accops Native Client?

Accops Native Client是由Accops开发的Chrome扩展程序,该扩展的主要功能是“Send a message to a native application.”。

扩展截图

screenshot
screenshot

下载Accops Native Client扩展crx文件

下载Accops Native Client扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Webpage and native applications can exchange messages through Accops Native Client extension using an API that is similar to the other message passing APIs. Native applications that support this feature must register a native messaging host that knows how to communicate with the extension. Chrome starts the host in a separate process and communicates with it using standard input and standard output streams.                    

扩展基本信息

名称 Accops Native Client Accops Native Client
ID kgnnlaamhmjmhkeegiaimkfojcagjcml
官方URL https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml
简介 Send a message to a native application.
文件大小 24.53 KB
安装次数 4,268
当前版本 3.1.0
更新时间 2022-07-06
上架时间 2019-02-01
评分 3.00/5 共2次评分
开发者 Accops
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.accops.com/privacy-policy
帮助页面URL http://support.accops.com/support/home
隐私政策页面URL https://www.accops.com/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accops Native Client",
    "short_name": "Accops NativeClient",
    "version": "3.1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "33",
    "description": "Send a message to a native application.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html",
                "https:\/\/*\/propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "propalms-nativemsg-iframe-jhepmpfdpjajhggflbhkjihdcplbchef.html",
        "manifest.json"
    ],
    "permissions": [
        "nativeMessaging"
    ]
}