Coffee Table Screen Sharing

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

Co to jest Coffee Table Screen Sharing?

Coffee Table Screen Sharing to rozszerzenie Chrome opracowane przez https://coffeetable.vc, a jego główną funkcją jest „A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Coffee Table Screen Sharing

Pobierz pliki rozszerzeń Coffee Table Screen Sharing w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Coffee Table Screen Sharing Coffee Table Screen Sharing
ID akdogkogbflojojlnmfojnjnghkmdjbc
Oficjalny URL https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc
Opis A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
Rozmiar pliku 6.14 KB
Liczba instalacji 18
Aktualna Wersja 0.0.0.6
Ostatnia Aktualizacja 2015-09-23
Data Publikacji 2015-09-22
Deweloper https://coffeetable.vc
Typ Płatności free
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}