Switchvox Screen Sharing for Switchboard

Enables screen-sharing for chrome in the switchboard

O que é Switchvox Screen Sharing for Switchboard?

Switchvox Screen Sharing for Switchboard é uma extensão do Chrome desenvolvida por Digium, Inc., e sua principal característica é "Enables screen-sharing for chrome in the switchboard".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Switchvox Screen Sharing for Switchboard

Baixe arquivos de extensão Switchvox Screen Sharing for Switchboard 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

                        This extension is for Switchvox users, and makes it possible to share your desktop computer screen in the Switchboard.                    

Informações Básicas da Extensão

Nome Switchvox Screen Sharing for Switchboard Switchvox Screen Sharing for Switchboard
ID odnmjffmhmkbebhofkmeeejdbcofiejc
URL Oficial https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc
Descrição Enables screen-sharing for chrome in the switchboard
Tamanho do Arquivo 4.03 KB
Contagem de Instalações 884
Versão Atual 0.0.2
Última Atualização 2018-10-24
Data de Publicação 2018-10-24
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Digium, Inc.
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switchvox Screen Sharing for Switchboard",
    "description": "Enables screen-sharing for chrome in the switchboard",
    "version": "0.0.2",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "desktopCapture",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}