Coffee Table Screen Sharing

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

什麼是Coffee Table Screen Sharing?

Coffee Table Screen Sharing是由https://coffeetable.vc開發的Chrome擴展程式,該擴展的主要功能是“A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.”。

擴展截圖

screenshot

下載Coffee Table Screen Sharing擴展crx文件

下載Coffee Table Screen Sharing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Coffee Table Screen Sharing Coffee Table Screen Sharing
ID akdogkogbflojojlnmfojnjnghkmdjbc
官方網址 https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc
簡介 A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
檔案大小 6.14 KB
安裝次數 18
目前版本 0.0.0.6
更新時間 2015-09-23
上架時間 2015-09-22
開發者 https://coffeetable.vc
付費類型 free
支援的語言 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:\/\/*\/*"
            ]
        }
    ]
}