Communicator Guest Client Share

The Communicator Guest Client Share extension helps the guest users to share their screens with the room attendees

Что такое Communicator Guest Client Share?

Communicator Guest Client Share - это расширение Chrome, разработанное Cisco BroadWorks, и его основная функция - "The Communicator Guest Client Share extension helps the guest users to share their screens with the room attendees".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Communicator Guest Client Share

Скачайте файлы расширений Communicator Guest Client Share в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension is used for Screen Sharing while in a meeting on Google Chrome.
It also lets the users to share their screens with other participants during a video chat to show presentations, photos and documents for an efficient online meeting.                    

Основная информация о расширении

Название Communicator Guest Client Share Communicator Guest Client Share
ID ajdkbkongbmbhecppacbpjeckconehbh
Официальный URL https://chromewebstore.google.com/detail/communicator-guest-client/ajdkbkongbmbhecppacbpjeckconehbh
Описание The Communicator Guest Client Share extension helps the guest users to share their screens with the room attendees
Размер файла 22.15 KB
Количество установок 54
Текущая Версия 2.0.3
Последнее Обновление 2021-09-16
Дата публикации 2021-09-13
Разработчик Cisco BroadWorks
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Communicator Guest Client Share",
    "version": "2.0.3",
    "description": "The Communicator Guest Client Share extension helps the guest users to share their screens with the room attendees",
    "manifest_version": 2,
    "default_locale": "en",
    "page_action": [],
    "permissions": [
        "desktopCapture"
    ],
    "icons": {
        "16": "images\/communicator-icon-16.png",
        "48": "images\/communicator-icon-48.png",
        "128": "images\/communicator-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scriptV2.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content_script.js"
    ],
    "background": {
        "scripts": [
            "GuestClientShare.js"
        ]
    }
}