Native Messaging Example

Send a message to a native application.

Native Messaging Exampleคืออะไร?

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

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Native Messaging Example ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Sample of Google Chrome Native Messaging 

Extensions and apps can exchange messages with native applications 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Native Messaging Example Native Messaging Example
ID mefhabneoickhhbiglkmehhmemefkopf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/native-messaging-example/mefhabneoickhhbiglkmehhmemefkopf
คำอธิบาย Send a message to a native application.
ขนาดไฟล์ 39.49 KB
จำนวนการติดตั้ง 285
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-09-19
วันที่เผยแพร่ 2016-09-18
คะแนน 3.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Mandar
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Native Messaging Example",
    "short_name": "NativeClient",
    "version": "1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "33",
    "description": "Send a message to a native application.",
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "main.html"
    },
    "icons": {
        "16": "icon-16.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "nativeMessaging"
    ]
}