Cyclops Screensharing

Allows for screensharing on Cyclops.

Cyclops Screensharing là gì?

Cyclops Screensharing là một tiện ích mở rộng Chrome được phát triển bởi http://cyclops.io, và tính năng chính của nó là "Allows for screensharing on Cyclops.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cyclops Screensharing

Tải xuống các tệp mở rộng Cyclops Screensharing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cyclops Screensharing Cyclops Screensharing
ID dpbhnmndoiiefjhipoldejoaopnmedmb
URL Chính Thức https://chrome.google.com/webstore/detail/cyclops-screensharing/dpbhnmndoiiefjhipoldejoaopnmedmb
Mô tả Allows for screensharing on Cyclops.
Kích Thước Tệp 5.52 KB
Số Lần Cài Đặt 204
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2018-10-01
Ngày Phát Hành 2018-10-01
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://cyclops.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.cyclops.io
URL Trang Trợ Giúp https://www.cyclops.io/about
URL Trang Chính Sách Bảo Mật https://www.cyclops.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}