Cyclops Screensharing

Allows for screensharing on Cyclops.

Cyclops Screensharingとは何ですか?

Cyclops Screensharingはhttp://cyclops.ioによって開発されたChromeの拡張機能で、その主な機能は「Allows for screensharing on Cyclops.」です。

拡張機能のスクリーンショット

screenshot

Cyclops Screensharing拡張機能のCRXファイルをダウンロード

Cyclops Screensharing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Cyclops Screensharing Cyclops Screensharing
ID dpbhnmndoiiefjhipoldejoaopnmedmb
公式URL https://chrome.google.com/webstore/detail/cyclops-screensharing/dpbhnmndoiiefjhipoldejoaopnmedmb
説明 Allows for screensharing on Cyclops.
ファイルサイズ 5.52 KB
インストール数 204
現在のバージョン 2.0.1
最終更新日 2018-10-01
公開日 2018-10-01
評価 5.00/5 合計 3 レビュー
開発者 http://cyclops.io
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.cyclops.io
ヘルプページのURL https://www.cyclops.io/about
プライバシーポリシーページのURL https://www.cyclops.io/privacy
対応言語 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\/*"
        ]
    }
}