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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
URL της Σελίδας Πολιτικής Απορρήτου | 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" } } } } |