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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Native Messaging Example
قم بتنزيل ملفات الامتداد Native Messaging Example بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } |