Skyroom Screen Sharing and Recording
Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.
Was ist Skyroom Screen Sharing and Recording?
Skyroom Screen Sharing and Recording ist eine Chrome-Erweiterung, die von https://skyroom.online entwickelt wurde, und ihr Hauptmerkmal ist "Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.".
Erweiterungsscreenshots
Skyroom Screen Sharing and Recording-Erweiterungs-CRX-Datei herunterladen
Laden Sie Skyroom Screen Sharing and Recording-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pejdnafppnpfimpnipdkiidjancinenc |
| Offizielle URL | https://chromewebstore.google.com/detail/skyroom-screen-sharing-an/pejdnafppnpfimpnipdkiidjancinenc |
| Beschreibung | Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording. |
| Dateigröße | 128 KB |
| Installationsanzahl | 101,600 |
| Aktuelle Version | 3.3.1 |
| Letztes Update | 2023-03-16 |
| Veröffentlichungsdatum | 2020-06-16 |
| Bewertung | 3.51/5 Insgesamt 72 Bewertungen |
| Entwickler | https://skyroom.online |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.skyroom.online |
| URL der Datenschutzrichtlinien-Seite | https://www.skyroom.online/privacy-policy |
| Unterstützte Sprachen | 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"
}
}
}
} | |