Yondo Screen Sharing
This extension allows a user of Yondo to share their screen during a live video call.
O que é Yondo Screen Sharing?
Yondo Screen Sharing é uma extensão do Chrome desenvolvida por https://yondo.com, e sua principal característica é "This extension allows a user of Yondo to share their screen during a live video call.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Yondo Screen Sharing
Baixe arquivos de extensão Yondo Screen Sharing no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | knhanngfnlfeflfklpmldgffmhbdbdef |
URL Oficial | https://chromewebstore.google.com/detail/yondo-screen-sharing/knhanngfnlfeflfklpmldgffmhbdbdef |
Descrição | This extension allows a user of Yondo to share their screen during a live video call. |
Tamanho do Arquivo | 9.48 KB |
Contagem de Instalações | 132 |
Versão Atual | 0.3 |
Última Atualização | 2022-05-24 |
Data de Publicação | 2015-12-10 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | https://yondo.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.yondo.com |
URL da Página de Ajuda | https://support.yondo.com |
URL da Página de Política de Privacidade | http://legal.yondo.com/privacypolicy.html |
Idiomas Suportados | 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" ] } |