Accops Native Client

Send a message to a native application.

Accops Native Client là gì?

Accops Native Client là một tiện ích mở rộng Chrome được phát triển bởi Accops, và tính năng chính của nó là "Send a message to a native application.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Accops Native Client

Tải xuống các tệp mở rộng Accops Native Client dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Accops Native Client Accops Native Client
ID kgnnlaamhmjmhkeegiaimkfojcagjcml
URL Chính Thức https://chromewebstore.google.com/detail/accops-native-client/kgnnlaamhmjmhkeegiaimkfojcagjcml
Mô tả Send a message to a native application.
Kích Thước Tệp 24.53 KB
Số Lần Cài Đặt 4,268
Phiên Bản Hiện Tại 3.1.0
Cập Nhật Lần Cuối 2022-07-06
Ngày Phát Hành 2019-02-01
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Accops
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.accops.com/privacy-policy
URL Trang Trợ Giúp http://support.accops.com/support/home
URL Trang Chính Sách Bảo Mật https://www.accops.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}