Cyclops Screensharing

Allows for screensharing on Cyclops.

Co je Cyclops Screensharing?

Cyclops Screensharing je rozšíření Chrome vyvinuté http://cyclops.io, a jeho hlavní funkcí je „Allows for screensharing on Cyclops.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Cyclops Screensharing

Stáhněte si soubory rozšíření Cyclops Screensharing ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Cyclops is a collaborative environment that brings the experience of a physical conference room to distributed teams who are working online. Cyclops is your no-download solution for meetings that are fast and secure; just grab a link to your virtual room and go.
 
Cyclops currently supports up to 8 people in a room. Name a room and get started fast with our 1-click rooms to collaborate in a transient space that anyone can join. Claim the room to reuse the URL exclusively, and lock your room for meetings that are invitation only.                    

Základní Informace o Rozšíření

Název Cyclops Screensharing Cyclops Screensharing
ID dpbhnmndoiiefjhipoldejoaopnmedmb
Oficiální URL https://chrome.google.com/webstore/detail/cyclops-screensharing/dpbhnmndoiiefjhipoldejoaopnmedmb
Popis Allows for screensharing on Cyclops.
Velikost souboru 5.52 KB
Počet instalací 204
Aktuální Verze 2.0.1
Poslední Aktualizace 2018-10-01
Datum Vydání 2018-10-01
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář http://cyclops.io
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.cyclops.io
URL Stránky Nápovědy https://www.cyclops.io/about
URL Stránky Zásad Ochrany Soukromí https://www.cyclops.io/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cyclops Screensharing",
    "description": "Allows for screensharing on Cyclops.",
    "version": "2.0.1",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.cyclops.io\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.cyclops.io\/*"
        ]
    }
}