Yondo Screen Sharing

This extension allows a user of Yondo to share their screen during a live video call.

Yondo Screen Sharing là gì?

Yondo Screen Sharing là một tiện ích mở rộng Chrome được phát triển bởi https://yondo.com, và tính năng chính của nó là "This extension allows a user of Yondo to share their screen during a live video call.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Yondo Screen Sharing 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

                        This extension allows a user of Yondo to share their screen during a live video call and webinars.
Yondo gives you the ability to show any content to your audience. You can choose whether to share your entire screen or only a single window. You are able to perform screen sharing in both the webinar and 1-to-1 live video sessions.
In order to use the screen sharing functionality in Yondo on Google Chrome, you will need to download this extension to enable this functionality. This way Google Chrome will permit sharing your screen.
If your customers also need to share their screens during your online sessions, please let them know they will need this extension and have them install the extension prior to the session to prevent any disruptions during your Yondo Live 1-to-1 and webinars calls.                    

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

Tên Yondo Screen Sharing Yondo Screen Sharing
ID knhanngfnlfeflfklpmldgffmhbdbdef
URL Chính Thức https://chromewebstore.google.com/detail/yondo-screen-sharing/knhanngfnlfeflfklpmldgffmhbdbdef
Mô tả This extension allows a user of Yondo to share their screen during a live video call.
Kích Thước Tệp 9.48 KB
Số Lần Cài Đặt 132
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2022-05-24
Ngày Phát Hành 2015-12-10
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://yondo.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.yondo.com
URL Trang Trợ Giúp https://support.yondo.com
URL Trang Chính Sách Bảo Mật http://legal.yondo.com/privacypolicy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yondo Screen Sharing",
    "short_name": "Screen Share",
    "author": "Yondo Pty Ltd",
    "version": "0.3",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This extension allows a user of Yondo to share their screen during a live video call.",
    "homepage_url": "http:\/\/www.yondo.com",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}