Accops Native Client

Send a message to a native application.

Accops Native Clientคืออะไร?

Accops Native Client เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Accops และคุณลักษณะหลักของมันคือ "Send a message to a native application."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Accops Native Client

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}