Yondo Screen Sharing

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

Yondo Screen Sharingคืออะไร?

Yondo Screen Sharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://yondo.com และคุณลักษณะหลักของมันคือ "This extension allows a user of Yondo to share their screen during a live video call."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yondo Screen Sharing

ดาวน์โหลดไฟล์ส่วนขยาย Yondo Screen Sharing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Yondo Screen Sharing Yondo Screen Sharing
ID knhanngfnlfeflfklpmldgffmhbdbdef
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/yondo-screen-sharing/knhanngfnlfeflfklpmldgffmhbdbdef
คำอธิบาย This extension allows a user of Yondo to share their screen during a live video call.
ขนาดไฟล์ 9.48 KB
จำนวนการติดตั้ง 132
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2022-05-24
วันที่เผยแพร่ 2015-12-10
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://yondo.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.yondo.com
URL หน้าช่วยเหลือ https://support.yondo.com
URL หน้านโยบายความเป็นส่วนตัว http://legal.yondo.com/privacypolicy.html
ภาษาที่รองรับ 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"
    ]
}