Redback Screensharing

The Redback Screensharing extension allows you to share your screen when you're using the Redback app

Что такое Redback Screensharing?

Redback Screensharing - это расширение Chrome, разработанное vishnu.n, и его основная функция - "The Redback Screensharing extension allows you to share your screen when you're using the Redback app".

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

screenshot
screenshot

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

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

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

                        The Redback Screensharing extension allows you to share your screen when you're in a meeting using the Redback web app. Offers the ability to share an entire screen or choose an application                    

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

Название Redback Screensharing Redback Screensharing
ID igipgpajcndaenenjoiaohkhapianjmh
Официальный URL https://chrome.google.com/webstore/detail/redback-screensharing/igipgpajcndaenenjoiaohkhapianjmh
Описание The Redback Screensharing extension allows you to share your screen when you're using the Redback app
Размер файла 8.13 KB
Количество установок 113
Текущая Версия 3.7.2
Последнее Обновление 2019-09-16
Дата публикации 2019-09-16
Рейтинг 4.50/5 Всего 2 оценок
Разработчик vishnu.n
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redback Screensharing",
    "author": "EnfinTechnologies",
    "version": "3.7.2",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "The Redback Screensharing extension allows you to share your screen when you're using the Redback app",
    "homepage_url": "https:\/\/redbackconferencing.com.au\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/localhost:4200\/*",
                "http:\/\/teleweb.rdbk.com.au\/web\/*",
                "https:\/\/teleweb.rdbk.com.au\/web\/*",
                "https:\/\/stagingteleweb.rdbk.com.au\/web\/*",
                "https:\/\/stagingwebconnect.rdbk.com.au\/web\/*",
                "https:\/\/webconnect.rdbk.com.au\/web\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}