Coffee Table Screen Sharing

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

Vad är Coffee Table Screen Sharing?

Coffee Table Screen Sharing är en Chrome-tillägg utvecklad av https://coffeetable.vc, och dess huvudfunktion är "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.".

Tilläggsskärmbilder

screenshot

Ladda ner Coffee Table Screen Sharing-förlängningens CRX-fil

Ladda ner Coffee Table Screen Sharing-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Coffee Table Screen Sharing Coffee Table Screen Sharing
ID akdogkogbflojojlnmfojnjnghkmdjbc
Officiell webbadress https://chromewebstore.google.com/detail/coffee-table-screen-shari/akdogkogbflojojlnmfojnjnghkmdjbc
Beskrivning A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.
Filstorlek 6.14 KB
Antal Installationer 18
Aktuell Version 0.0.0.6
Senast Uppdaterad 2015-09-23
Publiceringsdatum 2015-09-22
Utvecklare https://coffeetable.vc
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
            ]
        }
    ]
}