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 - это расширение Chrome, разработанное https://coffeetable.vc, и его основная функция - "A simple extension that allows user to share his desktop screens with other participants of Coffee Table Video Meetings.".
Снимки экрана расширения
Скачать файл CRX расширения Coffee Table Screen Sharing
Скачайте файлы расширений 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 |
ID | akdogkogbflojojlnmfojnjnghkmdjbc |
Официальный URL | 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:\/\/*\/*" ] } ] } |