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.”。

扩展截图

screenshot

下载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                    

扩展基本信息

名称 Skyroom Screen Sharing and 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"
            }
        }
    }
}