Screen Share

Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.

Что такое Screen Share?

Screen Share - это расширение Chrome, разработанное authorGEN, и его основная функция - "Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.".

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

screenshot
screenshot
screenshot

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

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

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

                        Share the screen of your browser window using Screen Share when teaching, training or collaborating online via webRTC Virtual Classroom.  Add this extension to your Chrome browser just once and share the contents of your screen or a particular application with your audience seamlessly.                    

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

Название Screen Share Screen Share
ID kihbmdbdahlekggklbfbgmnkifcmfcip
Официальный URL https://chrome.google.com/webstore/detail/screen-share/kihbmdbdahlekggklbfbgmnkifcmfcip
Описание Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.
Размер файла 13.21 KB
Количество установок 58,170
Текущая Версия 0.0.0.8
Последнее Обновление 2017-11-07
Дата публикации 2017-11-07
Рейтинг 2.47/5 Всего 43 оценок
Разработчик authorGEN
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности http://www.authorgen.com/Privacy.aspx
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Share",
    "author": "WizIQ",
    "version": "0.0.0.8",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}