Redback Screensharing

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

Co to jest Redback Screensharing?

Redback Screensharing to rozszerzenie Chrome opracowane przez vishnu.n, a jego główną funkcją jest „The Redback Screensharing extension allows you to share your screen when you're using the Redback app”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Redback Screensharing

Pobierz pliki rozszerzeń Redback Screensharing w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Redback Screensharing Redback Screensharing
ID igipgpajcndaenenjoiaohkhapianjmh
Oficjalny URL https://chrome.google.com/webstore/detail/redback-screensharing/igipgpajcndaenenjoiaohkhapianjmh
Opis The Redback Screensharing extension allows you to share your screen when you're using the Redback app
Rozmiar pliku 8.13 KB
Liczba instalacji 113
Aktualna Wersja 3.7.2
Ostatnia Aktualizacja 2019-09-16
Data Publikacji 2019-09-16
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper vishnu.n
Typ Płatności free
Obsługiwane Języki 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"
    ]
}