QDWExec Native messaging New
Execute method/URL Plugin for Chrome
ما هو QDWExec Native messaging New؟
QDWExec Native messaging New هو إضافة Chrome تم تطويرها بواسطة QSI dental web، والميزة الرئيسية لها هي "Execute method/URL Plugin for Chrome".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة QDWExec Native messaging New
قم بتنزيل ملفات الامتداد QDWExec Native messaging New بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension will enable the use of the 'Function Links' feature in the QDW application. معلومات أساسية عن التمديد
| الاسم | |
| ID | adolmacfmnokpailbjdbiphpcljohbig |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/qdwexec-native-messaging/adolmacfmnokpailbjdbiphpcljohbig |
| الوصف | Execute method/URL Plugin for Chrome |
| حجم الملف | 7.78 KB |
| عدد التثبيتات | 0 |
| النسخة الحالية | 2.0.0.1 |
| آخر تحديث | 2022-08-07 |
| تاريخ النشر | 2022-08-06 |
| المطور | QSI dental web |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| عنوان صفحة سياسة الخصوصية | https://www.nextgen.com/privacy-policy |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "QDWExec Native messaging New",
"description": "Execute method\/URL Plugin for Chrome",
"version": "2.0.0.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "qsi.png"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"qsi_contentscript.js"
],
"matches": [
"http:\/\/*.qsidentalweb.com\/*",
"https:\/\/*.qsidentalweb.com\/*"
],
"run_at": "document_start"
}
],
"icons": {
"128": "qsi.png"
},
"options_page": "options.htm",
"permissions": [
"nativeMessaging"
],
"host_permissions": [
"http:\/\/*.qsidentalweb.com\/*",
"https:\/\/*.qsidentalweb.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"apiscript.js"
],
"matches": [
"http:\/\/*.qsidentalweb.com\/*",
"https:\/\/*.qsidentalweb.com\/*"
]
}
]
} | |