RTC Share Desktop

WebRTC screen capturing extension.

Что такое RTC Share Desktop?

RTC Share Desktop - это расширение Chrome, разработанное driverfarfar, и его основная функция - "WebRTC screen capturing extension.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This is a WebRTC screen capturing extension                    

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

Название RTC Share Desktop RTC Share Desktop
ID ccahbcjalpomijfpjemdgpnbogofnlgl
Официальный URL https://chromewebstore.google.com/detail/rtc-share-desktop/ccahbcjalpomijfpjemdgpnbogofnlgl
Описание WebRTC screen capturing extension.
Размер файла 5.43 KB
Количество установок 34
Текущая Версия 1.0
Последнее Обновление 2019-01-11
Дата публикации 2019-01-10
Разработчик driverfarfar
Тип оплаты free
Официальный сайт расширения https://www.easemob.com/
URL страницы помощи https://www.easemob.com/
Поддерживаемые языки zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RTC Share Desktop",
    "author": "Simon",
    "version": "1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "WebRTC screen capturing extension.",
    "homepage_url": "https:\/\/www.easemob.com",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}