Skyroom Screen Sharing and Recording
Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.
ما هو Skyroom Screen Sharing and Recording؟
Skyroom Screen Sharing and Recording هو إضافة Chrome تم تطويرها بواسطة https://skyroom.online، والميزة الرئيسية لها هي "Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Skyroom Screen Sharing and Recording
قم بتنزيل ملفات الامتداد Skyroom Screen Sharing and Recording بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Skyroom is a web conferencing system that can be used for creating online events like learning, meeting and webinar. Skyroom provides the following key features: - Real-time voice and video conversations - Presentation - Whiteboard - Screen Sharing - File Transfer - Advanced Chat - Recording
معلومات أساسية عن التمديد
الاسم | Skyroom Screen Sharing and Recording |
ID | pejdnafppnpfimpnipdkiidjancinenc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/skyroom-screen-sharing-an/pejdnafppnpfimpnipdkiidjancinenc |
الوصف | Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording. |
حجم الملف | 128 KB |
عدد التثبيتات | 101,600 |
النسخة الحالية | 3.3.1 |
آخر تحديث | 2023-03-16 |
تاريخ النشر | 2020-06-16 |
تقييم | 3.51/5 مجموع تقييمات 72 |
المطور | https://skyroom.online |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.skyroom.online |
عنوان صفحة سياسة الخصوصية | https://www.skyroom.online/privacy-policy |
اللغات المدعومة | en-US |
manifest.json | |
{ "manifest_version": 2, "minimum_chrome_version": "47", "name": "Skyroom Screen Sharing and Recording", "short_name": "Skyroom", "description": "Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.", "permissions": [ "tabs", "activeTab", "tabCapture", "desktopCapture", "storage", "unlimitedStorage", "contextMenus", "downloads", "notifications" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "3.3.1", "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "persistent": true, "scripts": [ "js\/util.js", "js\/logger.js", "js\/storage.js", "js\/record.js", "js\/capture.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/content.js" ], "all_frames": true } ], "icons": { "16": "icon\/skyroom-icon-16.png", "48": "icon\/skyroom-icon-48.png", "128": "icon\/skyroom-icon-128.png" }, "browser_action": { "default_icon": "icon\/skyroom-icon-16.png", "default_popup": "popup.html" }, "commands": { "start_record": { "description": "Start recording", "suggested_key": { "default": "Ctrl+Shift+R" } } } } |