Coffee Table Screen Sharing

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

Apa itu Coffee Table Screen Sharing?

Coffee Table Screen Sharing adalah ekstensi Chrome yang dikembangkan oleh https://coffeetable.vc, dan fitur utamanya adalah "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Coffee Table Screen Sharing

Unduh file ekstensi Coffee Table Screen Sharing dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Coffee Table Screen Sharing Coffee Table Screen Sharing
ID akdogkogbflojojlnmfojnjnghkmdjbc
URL Resmi https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc
Deskripsi A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
Ukuran File 6.14 KB
Jumlah Instalasi 18
Versi Saat Ini 0.0.0.6
Terakhir Diperbarui 2015-09-23
Tanggal Publikasi 2015-09-22
Pengembang https://coffeetable.vc
Tipe Pembayaran free
Bahasa yang Didukung 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:\/\/*\/*"
            ]
        }
    ]
}