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
官方網址 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"
    ]
}