YouNeed Screen Sharing

This WebRTC screen capturing extension can be used with YouNeed platform

Что такое YouNeed Screen Sharing?

YouNeed Screen Sharing - это расширение Chrome, разработанное YouNeed®, и его основная функция - "This WebRTC screen capturing extension can be used with YouNeed platform".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения YouNeed Screen Sharing

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

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

                        While you're in a YouNeed® videocall, share instantly the screen of your computer with other participants to show documents, pictures and any other file.                    

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

Название YouNeed Screen Sharing YouNeed Screen Sharing
ID hmkcpajkidhbjcjfpnohokkhgdmfecpl
Официальный URL https://chrome.google.com/webstore/detail/youneed-screen-sharing/hmkcpajkidhbjcjfpnohokkhgdmfecpl
Описание This WebRTC screen capturing extension can be used with YouNeed platform
Размер файла 9.88 KB
Количество установок 170
Текущая Версия 1.0.3
Последнее Обновление 2021-10-19
Дата публикации 2018-04-10
Рейтинг 5.00/5 Всего 1 оценок
Разработчик YouNeed®
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://youneed.it
URL страницы политики конфиденциальности https://www.ambrogio.com/policy/policy-privacy.html
Поддерживаемые языки it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouNeed Screen Sharing",
    "short_name": "YNsharing",
    "author": "Ambrogio srl",
    "version": "1.0.3",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This WebRTC screen capturing extension can be used with YouNeed platform",
    "homepage_url": "https:\/\/web.youneed.it\/",
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.web.youneed.it\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "https:\/\/*.web.youneed.it\/*"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}