Tesse - Share Screen

This extension help you share your screen

O que é Tesse - Share Screen?

Tesse - Share Screen é uma extensão do Chrome desenvolvida por https://tesse.io, e sua principal característica é "This extension help you share your screen".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tesse - Share Screen

Baixe arquivos de extensão Tesse - Share Screen 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 helps you to share your screen in a video call to show presentations, photos, and documents.

Tesse.io allows you to start a video call, without the need to download or install anything.

This extension allows you to share your screen with other participants in tesse.io call/chat session, to improve your online meeting efficiency.

You can select the window/apllication you want to share.

This extension was built based on open source: https://github.com/muaz-khan                    

Informações Básicas da Extensão

Nome Tesse - Share Screen Tesse - Share Screen
ID cgplojjghbkfimkgggajefldkpmaklll
URL Oficial https://chromewebstore.google.com/detail/tesse-share-screen/cgplojjghbkfimkgggajefldkpmaklll
Descrição This extension help you share your screen
Tamanho do Arquivo 8.71 KB
Contagem de Instalações 33
Versão Atual 1.2
Última Atualização 2018-10-11
Data de Publicação 2018-10-11
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor https://tesse.io
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://tesse.io/tessbot
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tesse - Share Screen",
    "author": "Tesse, Inc.",
    "version": "1.2",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This extension help you share your screen",
    "homepage_url": "https:\/\/tesse.io",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/tesse.io\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    }
}