Skyroom Screen Sharing and Recording

Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.

O que é Skyroom Screen Sharing and Recording?

Skyroom Screen Sharing and Recording é uma extensão do Chrome desenvolvida por https://skyroom.online, e sua principal característica é "Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Skyroom Screen Sharing and Recording

Baixe arquivos de extensão Skyroom Screen Sharing and Recording no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Skyroom Screen Sharing and Recording Skyroom Screen Sharing and Recording
ID pejdnafppnpfimpnipdkiidjancinenc
URL Oficial https://chromewebstore.google.com/detail/skyroom-screen-sharing-an/pejdnafppnpfimpnipdkiidjancinenc
Descrição Allows to share your entire screen or a specific window in Skyroom application. It also provides tab recording.
Tamanho do Arquivo 128 KB
Contagem de Instalações 101,600
Versão Atual 3.3.1
Última Atualização 2023-03-16
Data de Publicação 2020-06-16
Classificação 3.51/5 Total de 72 Avaliações
Desenvolvedor https://skyroom.online
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.skyroom.online
URL da Página de Política de Privacidade https://www.skyroom.online/privacy-policy
Idiomas Suportados 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"
            }
        }
    }
}