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はhttps://skyroom.onlineによって開発されたChromeの拡張機能で、その主な機能は「Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.」です。
拡張機能のスクリーンショット
Skyroom Screen Sharing and Recording拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
}
}
} | |