Coffee Table Screen Sharing

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

Cos'è Coffee Table Screen Sharing?

Coffee Table Screen Sharing è un'estensione di Chrome sviluppata da https://coffeetable.vc, e la sua funzione principale è "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Coffee Table Screen Sharing

Scarica i file di estensione Coffee Table Screen Sharing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Coffee Table Screen Sharing Coffee Table Screen Sharing
ID akdogkogbflojojlnmfojnjnghkmdjbc
URL Ufficiale https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc
Descrizione A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
Dimensione del File 6.14 KB
Conteggio Installazioni 18
Versione Corrente 0.0.0.6
Ultimo Aggiornamento 2015-09-23
Data di Pubblicazione 2015-09-22
Sviluppatore https://coffeetable.vc
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}