Multiparty-Meeting Screen Sharing

This extension allows you to share your screen in the multiparty web-meeting you are in.

O que é Multiparty-Meeting Screen Sharing?

Multiparty-Meeting Screen Sharing é uma extensão do Chrome desenvolvida por https://akademia.no, e sua principal característica é "This extension allows you to share your screen in the multiparty web-meeting you are in.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Multiparty-Meeting Screen Sharing

Baixe arquivos de extensão Multiparty-Meeting Screen Sharing 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

                        Open source extension for sharing your screen in web meetings.                    

Informações Básicas da Extensão

Nome Multiparty-Meeting Screen Sharing Multiparty-Meeting Screen Sharing
ID fckajcjdaabdgnbdcmhhebdglogjfodi
URL Oficial https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi
Descrição This extension allows you to share your screen in the multiparty web-meeting you are in.
Tamanho do Arquivo 11.19 KB
Contagem de Instalações 95
Versão Atual 0.1.1
Última Atualização 2018-09-18
Data de Publicação 2018-09-18
Desenvolvedor https://akademia.no
Tipo de Pagamento free
Site da Extensão https://github.com/havfo/multiparty-meeting-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Multiparty-Meeting Screen Sharing",
    "short_name": "Screen Sharing",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "This extension allows you to share your screen in the multiparty web-meeting you are in.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}