Unify Screen Capture
This extension allows Unify WebRTC connections to use the screen as a video source.
ما هو Unify Screen Capture؟
Unify Screen Capture هو إضافة Chrome تم تطويرها بواسطة https://www.unify.com، والميزة الرئيسية لها هي "This extension allows Unify WebRTC connections to use the screen as a video source.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Unify Screen Capture
قم بتنزيل ملفات الامتداد Unify Screen Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows Unify WebRTC connections to use the screen as a video source. معلومات أساسية عن التمديد
| الاسم | |
| ID | habmbajnacidcciecdkkablilolhkopd |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/unify-screen-capture/habmbajnacidcciecdkkablilolhkopd |
| الوصف | This extension allows Unify WebRTC connections to use the screen as a video source. |
| حجم الملف | 7.63 KB |
| عدد التثبيتات | 43 |
| النسخة الحالية | 1.0.0 |
| آخر تحديث | 2023-12-05 |
| تاريخ النشر | 2019-05-28 |
| تقييم | 5.00/5 مجموع تقييمات 1 |
| المطور | https://www.unify.com |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| عنوان صفحة سياسة الخصوصية | https://unify.com/en/privacy-policy |
| اللغات المدعومة | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Unify Screen Capture",
"version": "1.0.0",
"description": "This extension allows Unify WebRTC connections to use the screen as a video source.",
"icons": {
"16": "screencapture_16.png",
"32": "screencapture_32.png",
"48": "screencapture_48.png",
"128": "screencapture_128.png"
},
"author": "Unify Communications and Collaboration GmbH & Co. KG",
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"*:\/\/*\/*"
]
}
],
"homepage_url": "https:\/\/www.unify.com",
"minimum_chrome_version": "34",
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"screencapture_16.png",
"screencapture_32.png",
"screencapture_48.png",
"screencapture_128.png"
]
} | |