Coffee Table Screen Sharing

A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.

O que é Coffee Table Screen Sharing?

Coffee Table Screen Sharing é uma extensão do Chrome desenvolvida por https://coffeetable.vc, e sua principal característica é "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Coffee Table Screen Sharing

Baixe arquivos de extensão Coffee Table 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

                        Screen sharing extension for Coffee Table video meetings. For Chrome browser only. For any issues or queries, contact us on [email protected]                    

Informações Básicas da Extensão

Nome Coffee Table Screen Sharing Coffee Table Screen Sharing
ID akdogkogbflojojlnmfojnjnghkmdjbc
URL Oficial https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc
Descrição A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
Tamanho do Arquivo 6.14 KB
Contagem de Instalações 18
Versão Atual 0.0.0.6
Última Atualização 2015-09-23
Data de Publicação 2015-09-22
Desenvolvedor https://coffeetable.vc
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Saurabh Pabhare",
    "name": "Coffee Table Screen Sharing",
    "description": "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.",
    "version": "0.0.0.6",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "128": "fav-icon.png",
        "16": "fav-icon.png",
        "48": "fav-icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/coffeetable.vc\/*",
            "*:\/\/www.coffeetable.vc\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}