Horizon Collaborate Guest Client

The Horizon Collaborate Guest Client sharing extension to help the guest users in sharing desktop with the room attendees

Что такое Horizon Collaborate Guest Client?

Horizon Collaborate Guest Client - это расширение Chrome, разработанное gammaaccessgooglewebstoreconsole, и его основная функция - "The Horizon Collaborate Guest Client sharing extension to help the guest users in sharing desktop with the room attendees".

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

screenshot

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

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

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

                        This extension enables a Horizon Collaborate guest to make their own screen shared to the other attendees in the meeting.                    

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

Название Horizon Collaborate Guest Client Horizon Collaborate Guest Client
ID cenpoaamfdlkmfhagmklphodcadlejnh
Официальный URL https://chromewebstore.google.com/detail/horizon-collaborate-guest/cenpoaamfdlkmfhagmklphodcadlejnh
Описание The Horizon Collaborate Guest Client sharing extension to help the guest users in sharing desktop with the room attendees
Размер файла 28.49 KB
Количество установок 931
Текущая Версия 2.0.1.2
Последнее Обновление 2021-07-31
Дата публикации 2019-01-16
Рейтинг 4.00/5 Всего 1 оценок
Разработчик gammaaccessgooglewebstoreconsole
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.gamma.co.uk/privacy-policy
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Horizon Collaborate Guest Client",
    "version": "2.0.1.2",
    "description": "The Horizon Collaborate Guest Client sharing extension to help the guest users in sharing desktop with the room attendees",
    "manifest_version": 2,
    "page_action": [],
    "permissions": [
        "desktopCapture"
    ],
    "icons": {
        "16": "images\/Horizon16.png",
        "48": "images\/Horizon48.png",
        "128": "images\/Horizon128.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"
        ]
    }
}