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은(는) https://yondo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows a user of Yondo to share their screen during a live video call."입니다.
확장 프로그램 스크린샷
Yondo Screen Sharing 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
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" ] } |