Coffee Table Screen Sharing

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

Qu'est-ce que Coffee Table Screen Sharing ?

Coffee Table Screen Sharing est une extension Chrome développée par https://coffeetable.vc, et sa fonction principale est "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Coffee Table Screen Sharing

Téléchargez les fichiers d'extension Coffee Table Screen Sharing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Coffee Table Screen Sharing Coffee Table Screen Sharing
ID akdogkogbflojojlnmfojnjnghkmdjbc
URL Officiel https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc
Description A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
Taille du Fichier 6.14 KB
Nombre d'Installations 18
Version Actuelle 0.0.0.6
Dernière Mise à Jour 2015-09-23
Date de Publication 2015-09-22
Développeur https://coffeetable.vc
Type de Paiement free
Langues Prises en Charge 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:\/\/*\/*"
            ]
        }
    ]
}